aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/ports/SkRemotableFontMgr.h
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-05-30 23:59:12 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-05-30 23:59:12 +0000
commit56f7cca144c539ec01f00d6382fded362ff193a3 (patch)
tree320e51ca850b8c7bf5ef14e1c523d385674eca14 /include/ports/SkRemotableFontMgr.h
parent22a1d96ca368a2d1fba40a541006be64af487ccd (diff)
Port most uses of SkOnce to SkLazyPtr.
BUG=skia: Committed: http://code.google.com/p/skia/source/detail?r=15006 R=reed@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/304383005 git-svn-id: http://skia.googlecode.com/svn/trunk@15014 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/ports/SkRemotableFontMgr.h')
-rw-r--r--include/ports/SkRemotableFontMgr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ports/SkRemotableFontMgr.h b/include/ports/SkRemotableFontMgr.h
index 68b4462206..bd99497cda 100644
--- a/include/ports/SkRemotableFontMgr.h
+++ b/include/ports/SkRemotableFontMgr.h
@@ -46,7 +46,7 @@ public:
private:
SkRemotableFontIdentitySet() : fCount(0), fData() { }
- static void NewEmptyImpl(int);
+ static SkRemotableFontIdentitySet* NewEmptyImpl();
int fCount;
SkAutoTMalloc<SkFontIdentity> fData;