| 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 cef699baa03e00b173ae495dab6a4f82f9034662..4ef594d0ed580eea2f77c27f153e3aaf160967b5 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| @@ -2111,10 +2111,10 @@ template <>
|
| inline CSSIdentifierValue::CSSIdentifierValue(ETableLayout e)
|
| : CSSValue(IdentifierClass) {
|
| switch (e) {
|
| - case TableLayoutAuto:
|
| + case ETableLayout::kAuto:
|
| m_valueID = CSSValueAuto;
|
| break;
|
| - case TableLayoutFixed:
|
| + case ETableLayout::kFixed:
|
| m_valueID = CSSValueFixed;
|
| break;
|
| }
|
| @@ -2124,15 +2124,15 @@ template <>
|
| inline ETableLayout CSSIdentifierValue::convertTo() const {
|
| switch (m_valueID) {
|
| case CSSValueFixed:
|
| - return TableLayoutFixed;
|
| + return ETableLayout::kFixed;
|
| case CSSValueAuto:
|
| - return TableLayoutAuto;
|
| + return ETableLayout::kAuto;
|
| default:
|
| break;
|
| }
|
|
|
| ASSERT_NOT_REACHED();
|
| - return TableLayoutAuto;
|
| + return ETableLayout::kAuto;
|
| }
|
|
|
| template <>
|
|
|