Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: src/fonts/SkRemotableFontMgr.cpp

Issue 1322933005: Port uses of SkLazyPtr to SkOncePtr. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: name Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/core/SkXfermode.cpp ('k') | src/lazy/SkDiscardableMemoryPool.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkOncePtr.h"
8 #include "SkRemotableFontMgr.h" 9 #include "SkRemotableFontMgr.h"
9 10
10 #include "SkLazyPtr.h"
11
12 SkRemotableFontIdentitySet::SkRemotableFontIdentitySet(int count, SkFontIdentity ** data) 11 SkRemotableFontIdentitySet::SkRemotableFontIdentitySet(int count, SkFontIdentity ** data)
13 : fCount(count), fData(count) 12 : fCount(count), fData(count)
14 { 13 {
15 SkASSERT(data); 14 SkASSERT(data);
16 *data = fData; 15 *data = fData;
17 } 16 }
18 17
19 // As a template argument, this must have external linkage. 18 SK_DECLARE_STATIC_ONCE_PTR(SkRemotableFontIdentitySet, empty);
20 SkRemotableFontIdentitySet* sk_remotable_font_identity_set_new() { 19 SkRemotableFontIdentitySet* SkRemotableFontIdentitySet::NewEmpty() {
21 return new SkRemotableFontIdentitySet; 20 return SkRef(empty.get([]{ return new SkRemotableFontIdentitySet; }));
22 } 21 }
23
24 SK_DECLARE_STATIC_LAZY_PTR(SkRemotableFontIdentitySet, empty, sk_remotable_font_ identity_set_new);
25 SkRemotableFontIdentitySet* SkRemotableFontIdentitySet::NewEmpty() {
26 return SkRef(empty.get());
27 }
OLDNEW
« no previous file with comments | « src/core/SkXfermode.cpp ('k') | src/lazy/SkDiscardableMemoryPool.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698