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

Unified Diff: trunk/src/ports/SkFontConfigInterface_direct.cpp

Issue 13297004: extend FontConfigInterface to start to match new fontmgr design (Closed) Base URL: http://skia.googlecode.com/svn/
Patch Set: Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/include/ports/SkFontConfigInterface.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/ports/SkFontConfigInterface_direct.cpp
===================================================================
--- trunk/src/ports/SkFontConfigInterface_direct.cpp (revision 8565)
+++ trunk/src/ports/SkFontConfigInterface_direct.cpp (working copy)
@@ -40,6 +40,23 @@
return gDirect;
}
+int SkFontConfigInterface::countFamilies() { return 0; }
+
+int SkFontConfigInterface::getFamilySet(int index, SkString* outFamilyName,
+ FontIdentity outIdentities[],
+ int maxCount) {
+ return 0;
+}
+
+int SkFontConfigInterface::matchFamilySet(const char familyName[],
+ SkString* outFamilyName,
+ FontIdentity outIdentities[],
+ int maxCount) {
+ return 0;
+}
+
+///////////////////////////////////////////////////////////////////////////////
+
namespace {
// Equivalence classes, used to match the Liberation and other fonts
« no previous file with comments | « trunk/include/ports/SkFontConfigInterface.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698