diff options
author | djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-05-21 16:53:50 +0000 |
---|---|---|
committer | djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-05-21 16:53:50 +0000 |
commit | bfae9d373ccc9cf47fd70757092962c7850fadf4 (patch) | |
tree | bb2dae453daf82743682a8323d273af418d1a145 /include/ports | |
parent | 7768751b8bec9e50fcbdad67b82e1962e71c3eb9 (diff) |
Add a fontConfig interface for android.
The contents of this CL are based on the SkFontHost_android.cpp found
in the android repository.
BUG=
R=reed@google.com
Review URL: https://codereview.chromium.org/14731025
git-svn-id: http://skia.googlecode.com/svn/trunk@9219 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/ports')
-rw-r--r-- | include/ports/SkTypeface_android.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ports/SkTypeface_android.h b/include/ports/SkTypeface_android.h index 0d89736e7e..fa702cb011 100644 --- a/include/ports/SkTypeface_android.h +++ b/include/ports/SkTypeface_android.h @@ -13,9 +13,11 @@ #include "SkTypeface.h" +class SkPaintOptionsAndroid; + /** * Get the family name of the font in the fallback font list containing - * the specified chararacter. if no font is found, returns false. + * the specified character. if no font is found, returns false. */ SK_API bool SkGetFallbackFamilyNameForChar(SkUnichar uni, SkString* name); |