blob: 6c907273e8aec5246ceb0d1150c430f0890bb64a [file] [log] [blame]
Ben Wagner7b562292018-09-19 22:31:07 -04001/*
2 * Copyright 2018 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkUniqueCFRef_DEFINED
9#define SkUniqueCFRef_DEFINED
10
11#include "SkTypes.h" // Keep this before any #ifdef ...
12#if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS)
13
14#include "SkTemplates.h"
15#include "SkTLogic.h"
16
17#include <CoreFoundation/CoreFoundation.h>
18#include <memory>
19
20namespace {
21template <typename CFRef> using SkUniqueCFRef =
22 std::unique_ptr<skstd::remove_pointer_t<CFRef>,
23 SkFunctionWrapper<void, skstd::remove_pointer_t<CFTypeRef>, CFRelease>>;
24} // namespace
25
26#endif
27#endif