| Index: third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| index 38f4765ae70fbb4384f79bddb1b295296f421226..4c6eea4fd2f38da711d0f5f44f42b9fc5b6b3411 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| @@ -2811,10 +2811,10 @@ template <>
|
| inline CSSIdentifierValue::CSSIdentifierValue(TextDirection e)
|
| : CSSValue(IdentifierClass) {
|
| switch (e) {
|
| - case LTR:
|
| + case TextDirection::Ltr:
|
| m_valueID = CSSValueLtr;
|
| break;
|
| - case RTL:
|
| + case TextDirection::Rtl:
|
| m_valueID = CSSValueRtl;
|
| break;
|
| }
|
| @@ -2824,15 +2824,15 @@ template <>
|
| inline TextDirection CSSIdentifierValue::convertTo() const {
|
| switch (m_valueID) {
|
| case CSSValueLtr:
|
| - return LTR;
|
| + return TextDirection::Ltr;
|
| case CSSValueRtl:
|
| - return RTL;
|
| + return TextDirection::Rtl;
|
| default:
|
| break;
|
| }
|
|
|
| ASSERT_NOT_REACHED();
|
| - return LTR;
|
| + return TextDirection::Ltr;
|
| }
|
|
|
| template <>
|
|
|