| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 #include "SkFontConfigInterface.h" | 8 #include "SkFontConfigInterface.h" |
| 9 #include "SkFontHost_FreeType_common.h" | 9 #include "SkFontHost_FreeType_common.h" |
| 10 #include "SkStream.h" | 10 #include "SkStream.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 return fFamilyName.equals(name); | 48 return fFamilyName.equals(name); |
| 49 } | 49 } |
| 50 | 50 |
| 51 static SkTypeface* LegacyCreateTypeface(const SkTypeface* family, | 51 static SkTypeface* LegacyCreateTypeface(const SkTypeface* family, |
| 52 const char familyName[], | 52 const char familyName[], |
| 53 SkTypeface::Style); | 53 SkTypeface::Style); |
| 54 | 54 |
| 55 protected: | 55 protected: |
| 56 friend class SkFontHost; // hack until we can make public versions | 56 friend class SkFontHost; // hack until we can make public versions |
| 57 | 57 |
| 58 virtual int onGetTableTags(SkFontTableTag tags[]) const SK_OVERRIDE; | |
| 59 virtual size_t onGetTableData(SkFontTableTag, size_t offset, | |
| 60 size_t length, void* data) const SK_OVERRIDE; | |
| 61 virtual void onGetFontDescriptor(SkFontDescriptor*, bool*) const SK_OVERRIDE
; | 58 virtual void onGetFontDescriptor(SkFontDescriptor*, bool*) const SK_OVERRIDE
; |
| 62 virtual SkStream* onOpenStream(int* ttcIndex) const SK_OVERRIDE; | 59 virtual SkStream* onOpenStream(int* ttcIndex) const SK_OVERRIDE; |
| 63 virtual SkTypeface* onRefMatchingStyle(Style) const SK_OVERRIDE; | 60 virtual SkTypeface* onRefMatchingStyle(Style) const SK_OVERRIDE; |
| 64 | 61 |
| 65 private: | 62 private: |
| 66 typedef SkTypeface_FreeType INHERITED; | 63 typedef SkTypeface_FreeType INHERITED; |
| 67 }; | 64 }; |
| OLD | NEW |