| Index: third_party/WebKit/Source/platform/text/TextDirection.h
|
| diff --git a/third_party/WebKit/Source/platform/text/TextDirection.h b/third_party/WebKit/Source/platform/text/TextDirection.h
|
| index e67698ae53c34374846181d52162ca34f6a7c9ef..efdc2b3c67c78b665109613f17105c37524d3f7c 100644
|
| --- a/third_party/WebKit/Source/platform/text/TextDirection.h
|
| +++ b/third_party/WebKit/Source/platform/text/TextDirection.h
|
| @@ -28,10 +28,10 @@
|
|
|
| namespace blink {
|
|
|
| -enum class TextDirection : unsigned { Rtl, Ltr };
|
| +enum class TextDirection : unsigned { kRtl, kLtr };
|
|
|
| inline bool isLeftToRightDirection(TextDirection direction) {
|
| - return direction == TextDirection::Ltr;
|
| + return direction == TextDirection::kLtr;
|
| }
|
| }
|
|
|
|
|