| Index: third_party/WebKit/Source/platform/text/BidiTextRun.cpp
 | 
| diff --git a/third_party/WebKit/Source/platform/text/BidiTextRun.cpp b/third_party/WebKit/Source/platform/text/BidiTextRun.cpp
 | 
| index 3caf3bf0d48041f65d4eb24999ef3fedbe0ddd33..e5018864b34f20989fb9dff2e741e376c769222a 100644
 | 
| --- a/third_party/WebKit/Source/platform/text/BidiTextRun.cpp
 | 
| +++ b/third_party/WebKit/Source/platform/text/BidiTextRun.cpp
 | 
| @@ -39,7 +39,7 @@ TextDirection directionForRun(TextRun& run, bool* hasStrongDirectionality) {
 | 
|    if (!hasStrongDirectionality) {
 | 
|      // 8bit is Latin-1 and therefore is always LTR.
 | 
|      if (run.is8Bit())
 | 
| -      return TextDirection::Ltr;
 | 
| +      return TextDirection::kLtr;
 | 
|  
 | 
|      // length == 1 for more than 90% of cases of width() for CJK text.
 | 
|      if (run.length() == 1 && U16_IS_SINGLE(run.characters16()[0]))
 | 
| 
 |