| Index: third_party/WebKit/Source/platform/fonts/Font.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/Font.cpp b/third_party/WebKit/Source/platform/fonts/Font.cpp
|
| index 094bfebbf39e69345ef7fd0f02338c4c10a0ff84..cf5a6f332ca728496722d15a366eb8cae141c6d9 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/Font.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/Font.cpp
|
| @@ -409,14 +409,10 @@ int Font::offsetForPosition(const TextRun& run, float x, bool includePartialGlyp
|
|
|
| CodePath Font::codePath(const TextRunPaintInfo& runInfo) const
|
| {
|
| -// TODO(eae): Disable the always use complex text feature on Android for now as
|
| -// it caused a memory regression for webview. crbug.com/577306
|
| -#if !OS(ANDROID)
|
| if (RuntimeEnabledFeatures::alwaysUseComplexTextEnabled()
|
| || LayoutTestSupport::alwaysUseComplexTextForTest()) {
|
| return ComplexPath;
|
| }
|
| -#endif
|
|
|
| const TextRun& run = runInfo.run;
|
|
|
|
|