| 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 b813b5ddd27437d6b9959be84545690f64f2b558..a4bfa771dd72cd730c5032915dacdca9bc68dc04 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| @@ -198,10 +198,10 @@ template <>
|
| inline CSSIdentifierValue::CSSIdentifierValue(PrintColorAdjust value)
|
| : CSSValue(IdentifierClass) {
|
| switch (value) {
|
| - case PrintColorAdjustExact:
|
| + case PrintColorAdjust::Exact:
|
| m_valueID = CSSValueExact;
|
| break;
|
| - case PrintColorAdjustEconomy:
|
| + case PrintColorAdjust::Economy:
|
| m_valueID = CSSValueEconomy;
|
| break;
|
| }
|
| @@ -211,15 +211,15 @@ template <>
|
| inline PrintColorAdjust CSSIdentifierValue::convertTo() const {
|
| switch (m_valueID) {
|
| case CSSValueEconomy:
|
| - return PrintColorAdjustEconomy;
|
| + return PrintColorAdjust::Economy;
|
| case CSSValueExact:
|
| - return PrintColorAdjustExact;
|
| + return PrintColorAdjust::Exact;
|
| default:
|
| break;
|
| }
|
|
|
| ASSERT_NOT_REACHED();
|
| - return PrintColorAdjustEconomy;
|
| + return PrintColorAdjust::Economy;
|
| }
|
|
|
| template <>
|
|
|