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

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

Issue 1702073002: Move SkTArray to include/private. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix kilobench. Created 4 years, 10 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 | « include/ports/SkFontConfigInterface.h ('k') | include/private/SkTArray.h » ('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 #ifndef SkFontMgr_indirect_DEFINED 8 #ifndef SkFontMgr_indirect_DEFINED
9 #define SkFontMgr_indirect_DEFINED 9 #define SkFontMgr_indirect_DEFINED
10 10
11 #include "../private/SkMutex.h"
12 #include "../private/SkTArray.h"
11 #include "SkDataTable.h" 13 #include "SkDataTable.h"
12 #include "SkFontMgr.h" 14 #include "SkFontMgr.h"
13 #include "../private/SkMutex.h"
14 #include "SkRefCnt.h" 15 #include "SkRefCnt.h"
15 #include "SkRemotableFontMgr.h" 16 #include "SkRemotableFontMgr.h"
16 #include "SkTArray.h"
17 #include "SkTypeface.h" 17 #include "SkTypeface.h"
18 #include "SkTypes.h" 18 #include "SkTypes.h"
19 19
20 class SkData; 20 class SkData;
21 class SkFontStyle; 21 class SkFontStyle;
22 class SkStreamAsset; 22 class SkStreamAsset;
23 class SkString; 23 class SkString;
24 24
25 class SK_API SkFontMgr_Indirect : public SkFontMgr { 25 class SK_API SkFontMgr_Indirect : public SkFontMgr {
26 public: 26 public:
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 97
98 mutable SkAutoTUnref<SkDataTable> fFamilyNames; 98 mutable SkAutoTUnref<SkDataTable> fFamilyNames;
99 mutable bool fFamilyNamesInited; 99 mutable bool fFamilyNamesInited;
100 mutable SkMutex fFamilyNamesMutex; 100 mutable SkMutex fFamilyNamesMutex;
101 static void set_up_family_names(const SkFontMgr_Indirect* self); 101 static void set_up_family_names(const SkFontMgr_Indirect* self);
102 102
103 friend class SkStyleSet_Indirect; 103 friend class SkStyleSet_Indirect;
104 }; 104 };
105 105
106 #endif 106 #endif
OLDNEW
« no previous file with comments | « include/ports/SkFontConfigInterface.h ('k') | include/private/SkTArray.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698