| Index: third_party/WebKit/Source/platform/LayoutTestSupport.cpp
|
| diff --git a/third_party/WebKit/Source/platform/LayoutTestSupport.cpp b/third_party/WebKit/Source/platform/LayoutTestSupport.cpp
|
| index e6f3187055f0bb59868f8b794d715d0c46998b7a..ac6c7de61c7e377c2f3b5cc4ece3fea959ed1261 100644
|
| --- a/third_party/WebKit/Source/platform/LayoutTestSupport.cpp
|
| +++ b/third_party/WebKit/Source/platform/LayoutTestSupport.cpp
|
| @@ -37,7 +37,6 @@ namespace blink {
|
| static bool s_isRunningLayoutTest = false;
|
| static bool s_isMockThemeEnabled = false;
|
| static bool s_isFontAntialiasingEnabled = false;
|
| -static bool s_alwaysUseComplexTextForTest = false;
|
|
|
| bool LayoutTestSupport::isRunningLayoutTest() {
|
| return s_isRunningLayoutTest;
|
| @@ -64,12 +63,4 @@ void LayoutTestSupport::setFontAntialiasingEnabledForTest(bool value) {
|
| s_isFontAntialiasingEnabled = value;
|
| }
|
|
|
| -bool LayoutTestSupport::alwaysUseComplexTextForTest() {
|
| - return s_alwaysUseComplexTextForTest;
|
| -}
|
| -
|
| -void LayoutTestSupport::setAlwaysUseComplexTextForTest(bool value) {
|
| - s_alwaysUseComplexTextForTest = value;
|
| -}
|
| -
|
| } // namespace blink
|
|
|