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

Side by Side Diff: skia/ext/SkFontHost_fontconfig_direct.h

Issue 1235001: linux: be more conservative in Liberation font fallback (Closed)
Patch Set: Created 10 years, 9 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 | « no previous file | skia/ext/SkFontHost_fontconfig_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 /* libs/graphics/ports/SkFontHost_fontconfig_direct.h 1 /* libs/graphics/ports/SkFontHost_fontconfig_direct.h
2 ** 2 **
3 ** Copyright 2009, Google Inc. 3 ** Copyright 2009, Google Inc.
4 ** 4 **
5 ** Licensed under the Apache License, Version 2.0 (the "License"); 5 ** Licensed under the Apache License, Version 2.0 (the "License");
6 ** you may not use this file except in compliance with the License. 6 ** you may not use this file except in compliance with the License.
7 ** You may obtain a copy of the License at 7 ** You may obtain a copy of the License at
8 ** 8 **
9 ** http://www.apache.org/licenses/LICENSE-2.0 9 ** http://www.apache.org/licenses/LICENSE-2.0
10 ** 10 **
(...skipping 17 matching lines...) Expand all
28 public: 28 public:
29 FontConfigDirect(); 29 FontConfigDirect();
30 30
31 // FontConfigInterface implementation. Thread safe. 31 // FontConfigInterface implementation. Thread safe.
32 virtual bool Match(std::string* result_family, unsigned* result_fileid, 32 virtual bool Match(std::string* result_family, unsigned* result_fileid,
33 bool fileid_valid, unsigned fileid, 33 bool fileid_valid, unsigned fileid,
34 const std::string& family, bool* is_bold, bool* is_italic ); 34 const std::string& family, bool* is_bold, bool* is_italic );
35 virtual int Open(unsigned fileid); 35 virtual int Open(unsigned fileid);
36 36
37 private: 37 private:
38 // Return true if font_a and font_b are completely interchangeable;
39 // e.g., there exist free clones of certain well-known fonts.
40 bool IsMetricCompatibleReplacement(const char* font_a, const char* font_b);
41
42 SkMutex mutex_; 38 SkMutex mutex_;
43 std::map<unsigned, std::string> fileid_to_filename_; 39 std::map<unsigned, std::string> fileid_to_filename_;
44 std::map<std::string, unsigned> filename_to_fileid_; 40 std::map<std::string, unsigned> filename_to_fileid_;
45 unsigned next_file_id_; 41 unsigned next_file_id_;
46 }; 42 };
47 43
48 #endif // FontConfigDirect_DEFINED 44 #endif // FontConfigDirect_DEFINED
OLDNEW
« no previous file with comments | « no previous file | skia/ext/SkFontHost_fontconfig_direct.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698