Chromium Code Reviews| Index: third_party/WebKit/public/web/win/WebFontRendering.h |
| diff --git a/third_party/WebKit/public/web/win/WebFontRendering.h b/third_party/WebKit/public/web/win/WebFontRendering.h |
| index 5c7c3836d7c3e7f6d282b4fc8bb9029c49cce3d1..41610e17ef77cd062d348d396d987c016043d7ee 100644 |
| --- a/third_party/WebKit/public/web/win/WebFontRendering.h |
| +++ b/third_party/WebKit/public/web/win/WebFontRendering.h |
| @@ -6,17 +6,17 @@ |
| #define WebFontRendering_h |
| #include "public/platform/WebCommon.h" |
| -#include <SkFontHost.h> |
| +#include <third_party/skia/include/core/SkFontHost.h> |
|
bungeman-skia
2016/01/27 22:18:29
Any particular reason for this to be in pointy bra
Ilya Kulshin
2016/01/29 19:49:41
It was like that when I found it? I'll change it.
jbroman
2016/02/09 22:31:30
this include shouldn't be needed, given the fwd de
|
| +class SkFontMgr; |
| class SkTypeface; |
| -struct IDWriteFactory; |
| namespace blink { |
| class WebFontRendering { |
| public: |
| BLINK_EXPORT static void setUseDirectWrite(bool); |
| - BLINK_EXPORT static void setDirectWriteFactory(IDWriteFactory*); |
| + BLINK_EXPORT static void setSkiaFontManager(SkFontMgr*); |
| BLINK_EXPORT static void setDeviceScaleFactor(float); |
| BLINK_EXPORT static void setUseSubpixelPositioning(bool); |
| BLINK_EXPORT static void addSideloadedFontForTesting(SkTypeface*); |