| Index: src/ports/SkFontHost_FreeType_common.h
|
| diff --git a/src/ports/SkFontHost_FreeType_common.h b/src/ports/SkFontHost_FreeType_common.h
|
| index 8c13a80aa57e77a70431b52145af8393c80def8b..99b43dccca2a4381eb62ea3a56e08cfbfb93be9c 100644
|
| --- a/src/ports/SkFontHost_FreeType_common.h
|
| +++ b/src/ports/SkFontHost_FreeType_common.h
|
| @@ -26,9 +26,8 @@
|
| // This value was chosen by eyeballing the result in Firefox and trying to match it.
|
| static const FT_Pos kBitmapEmboldenStrength = 1 << 6;
|
|
|
| - SkScalerContext_FreeType_Base(SkTypeface* typeface, const SkScalerContextEffects& effects,
|
| - const SkDescriptor *desc)
|
| - : INHERITED(typeface, effects, desc)
|
| + SkScalerContext_FreeType_Base(SkTypeface* typeface, const SkDescriptor *desc)
|
| + : INHERITED(typeface, desc)
|
| {}
|
|
|
| void generateGlyphImage(FT_Face face, const SkGlyph& glyph);
|
| @@ -76,8 +75,8 @@
|
| , fGlyphCount(-1)
|
| {}
|
|
|
| - virtual SkScalerContext* onCreateScalerContext(const SkScalerContextEffects&,
|
| - const SkDescriptor*) const override;
|
| + virtual SkScalerContext* onCreateScalerContext(
|
| + const SkDescriptor*) const override;
|
| void onFilterRec(SkScalerContextRec*) const override;
|
| SkAdvancedTypefaceMetrics* onGetAdvancedTypefaceMetrics(
|
| PerGlyphInfo, const uint32_t*, uint32_t) const override;
|
|
|