diff options
Diffstat (limited to 'src/ports/SkFontConfigTypeface.h')
-rw-r--r-- | src/ports/SkFontConfigTypeface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ports/SkFontConfigTypeface.h b/src/ports/SkFontConfigTypeface.h index b636052c47..1a59d7c1ed 100644 --- a/src/ports/SkFontConfigTypeface.h +++ b/src/ports/SkFontConfigTypeface.h @@ -60,7 +60,7 @@ protected: void onGetFamilyName(SkString* familyName) const override { *familyName = fFamilyName; } void onGetFontDescriptor(SkFontDescriptor*, bool*) const override; SkStreamAsset* onOpenStream(int* ttcIndex) const override; - SkFontData* onCreateFontData() const override; + std::unique_ptr<SkFontData> onMakeFontData() const override; private: typedef SkTypeface_FreeType INHERITED; |