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

Side by Side Diff: src/ports/SkFontConfigInterface_direct.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/utils/SkRTConf.h ('k') | src/ports/SkFontConfigInterface_direct.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 2009-2015 Google Inc. 2 * Copyright 2009-2015 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 /* migrated from chrome/src/skia/ext/SkFontHost_fontconfig_direct.cpp */ 8 /* migrated from chrome/src/skia/ext/SkFontHost_fontconfig_direct.cpp */
9 9
10 #include "SkFontConfigInterface.h" 10 #include "SkFontConfigInterface.h"
11 #include "SkMutex.h" 11 #include "SkMutex.h"
12 12
13 #include <fontconfig/fontconfig.h> 13 #include <fontconfig/fontconfig.h>
14 14
15 class SkFontConfigInterfaceDirect : public SkFontConfigInterface { 15 class SkFontConfigInterfaceDirect : public SkFontConfigInterface {
16 public: 16 public:
17 SkFontConfigInterfaceDirect(); 17 SkFontConfigInterfaceDirect();
18 ~SkFontConfigInterfaceDirect() override; 18 ~SkFontConfigInterfaceDirect() override;
19 19
20 bool matchFamilyName(const char familyName[], 20 bool matchFamilyName(const char familyName[],
21 SkTypeface::Style requested, 21 SkTypeface::Style requested,
22 FontIdentity* outFontIdentifier, 22 FontIdentity* outFontIdentifier,
23 SkString* outFamilyName, 23 SkString* outFamilyName,
24 SkTypeface::Style* outStyle) override; 24 SkTypeface::Style* outStyle) override;
25 SkStreamAsset* openStream(const FontIdentity&) override; 25 SkStreamAsset* openStream(const FontIdentity&) override;
26 26
27 // new APIs 27 // new APIs
28 SkDataTable* getFamilyNames() override; 28 SkDataTable* getFamilyNames() override;
29 bool matchFamilySet(const char inFamilyName[],
30 SkString* outFamilyName,
31 SkTArray<FontIdentity>*) override;
32 29
33 protected: 30 protected:
34 virtual bool isAccessible(const char* filename); 31 virtual bool isAccessible(const char* filename);
35 32
36 private: 33 private:
37 SkMutex mutex_; 34 SkMutex mutex_;
38 35
39 bool isValidPattern(FcPattern* pattern); 36 bool isValidPattern(FcPattern* pattern);
40 FcPattern* MatchFont(FcFontSet* font_set, const char* post_config_family, 37 FcPattern* MatchFont(FcFontSet* font_set, const char* post_config_family,
41 const SkString& family); 38 const SkString& family);
42 typedef SkFontConfigInterface INHERITED; 39 typedef SkFontConfigInterface INHERITED;
43 }; 40 };
OLDNEW
« no previous file with comments | « include/utils/SkRTConf.h ('k') | src/ports/SkFontConfigInterface_direct.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698