| Index: third_party/WebKit/Source/web/WebKit.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebKit.cpp b/third_party/WebKit/Source/web/WebKit.cpp
|
| index dca9111bed0dd0637169403bbdb84a930ad6a32c..1a0ef8b1624c13778032ef0a05852a118cf497a6 100644
|
| --- a/third_party/WebKit/Source/web/WebKit.cpp
|
| +++ b/third_party/WebKit/Source/web/WebKit.cpp
|
| @@ -265,6 +265,16 @@ bool fontAntialiasingEnabledForTest()
|
| return LayoutTestSupport::isFontAntialiasingEnabledForTest();
|
| }
|
|
|
| +void setAlwaysUseComplexTextForTest(bool value)
|
| +{
|
| + LayoutTestSupport::setAlwaysUseComplexTextForTest(value);
|
| +}
|
| +
|
| +bool alwaysUseComplexTextForTest()
|
| +{
|
| + return LayoutTestSupport::alwaysUseComplexTextForTest();
|
| +}
|
| +
|
| void enableLogChannel(const char* name)
|
| {
|
| #if !LOG_DISABLED
|
|
|