diff options
author | bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-15 19:42:57 +0000 |
---|---|---|
committer | bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-15 19:42:57 +0000 |
commit | 7bdd614a1940935d3badeb54f7aae75d76ea830d (patch) | |
tree | aeb3d7e8d8b68cb9d1fb77a0def97f689a2876d7 /include | |
parent | 78b38b130deb8bcfa41611039875ce0162542ac1 (diff) |
Implement onCountGlyphs and onGetUPEM on Windows.
R=vandebo@chromium.org
Review URL: https://codereview.chromium.org/19231003
git-svn-id: http://skia.googlecode.com/svn/trunk@10089 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkTypeface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/core/SkTypeface.h b/include/core/SkTypeface.h index c84ae288a6..0fd2ddba1f 100644 --- a/include/core/SkTypeface.h +++ b/include/core/SkTypeface.h @@ -272,9 +272,9 @@ protected: virtual int onCharsToGlyphs(const void* chars, Encoding, uint16_t glyphs[], int glyphCount) const; - virtual int onCountGlyphs() const; + virtual int onCountGlyphs() const = 0; - virtual int onGetUPEM() const; + virtual int onGetUPEM() const = 0; virtual int onGetTableTags(SkFontTableTag tags[]) const; virtual size_t onGetTableData(SkFontTableTag, size_t offset, |