| Index: third_party/WebKit/Source/web/linux/WebFontRendering.cpp
|
| diff --git a/third_party/WebKit/Source/web/linux/WebFontRendering.cpp b/third_party/WebKit/Source/web/linux/WebFontRendering.cpp
|
| index 63b21a3a5a4852496c5beaec261ba7ff1d172e35..c2feaaaac31299802eeaef16b99fb387edf2dfad 100644
|
| --- a/third_party/WebKit/Source/web/linux/WebFontRendering.cpp
|
| +++ b/third_party/WebKit/Source/web/linux/WebFontRendering.cpp
|
| @@ -50,31 +50,31 @@ void WebFontRendering::setSkiaFontManager(SkFontMgr* fontMgr)
|
| // static
|
| void WebFontRendering::setHinting(SkPaint::Hinting hinting)
|
| {
|
| - FontPlatformData::setHinting(hinting);
|
| + FontRenderStyle::setHinting(hinting);
|
| }
|
|
|
| // static
|
| void WebFontRendering::setAutoHint(bool useAutoHint)
|
| {
|
| - FontPlatformData::setAutoHint(useAutoHint);
|
| + FontRenderStyle::setAutoHint(useAutoHint);
|
| }
|
|
|
| // static
|
| void WebFontRendering::setUseBitmaps(bool useBitmaps)
|
| {
|
| - FontPlatformData::setUseBitmaps(useBitmaps);
|
| + FontRenderStyle::setUseBitmaps(useBitmaps);
|
| }
|
|
|
| // static
|
| void WebFontRendering::setAntiAlias(bool useAntiAlias)
|
| {
|
| - FontPlatformData::setAntiAlias(useAntiAlias);
|
| + FontRenderStyle::setAntiAlias(useAntiAlias);
|
| }
|
|
|
| // static
|
| void WebFontRendering::setSubpixelRendering(bool useSubpixelRendering)
|
| {
|
| - FontPlatformData::setSubpixelRendering(useSubpixelRendering);
|
| + FontRenderStyle::setSubpixelRendering(useSubpixelRendering);
|
| }
|
|
|
| // static
|
|
|