blob: c8cf9b4c2b0dcdbdc2caa7cd1b3a7b50bce5be89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_MAC_SCOPED_DISPATCH_OBJECT_H_
#define BASE_MAC_SCOPED_DISPATCH_OBJECT_H_
#include <dispatch/dispatch.h>
#include "base/mac/scoped_typeref.h"
namespace base {
namespace internal {
template <typename T>
struct ScopedDispatchObjectTraits {
static constexpr T InvalidValue() { return nullptr; }
static T Retain(T object) {
dispatch_retain(object);
return object;
}
static void Release(T object) {
dispatch_release(object);
}
};
} // namespace internal
template <typename T>
using ScopedDispatchObject =
ScopedTypeRef<T, internal::ScopedDispatchObjectTraits<T>>;
} // namespace base
#endif // BASE_MAC_SCOPED_DISPATCH_OBJECT_H_
|