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

Side by Side Diff: include/ports/SkFontMgr.h

Issue 19543008: Remove unimplemented Mutex() method from SkFontMgr.h. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 2013 Google Inc. 2 * Copyright 2013 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 #ifndef SkFontMgr_DEFINED 8 #ifndef SkFontMgr_DEFINED
9 #define SkFontMgr_DEFINED 9 #define SkFontMgr_DEFINED
10 10
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 const SkFontStyle&) = 0; 90 const SkFontStyle&) = 0;
91 virtual SkTypeface* onMatchFaceStyle(const SkTypeface*, 91 virtual SkTypeface* onMatchFaceStyle(const SkTypeface*,
92 const SkFontStyle&) = 0; 92 const SkFontStyle&) = 0;
93 93
94 virtual SkTypeface* onCreateFromData(SkData*, int ttcIndex) = 0; 94 virtual SkTypeface* onCreateFromData(SkData*, int ttcIndex) = 0;
95 virtual SkTypeface* onCreateFromStream(SkStream*, int ttcIndex) = 0; 95 virtual SkTypeface* onCreateFromStream(SkStream*, int ttcIndex) = 0;
96 virtual SkTypeface* onCreateFromFile(const char path[], int ttcIndex) = 0; 96 virtual SkTypeface* onCreateFromFile(const char path[], int ttcIndex) = 0;
97 97
98 private: 98 private:
99 static SkFontMgr* Factory(); // implemented by porting layer 99 static SkFontMgr* Factory(); // implemented by porting layer
100 static SkMutex* Mutex(); // implemented by porting layer
101 100
102 typedef SkRefCnt INHERITED; 101 typedef SkRefCnt INHERITED;
103 }; 102 };
104 103
105 #endif 104 #endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698