| Index: third_party/WebKit/Source/build/scripts/templates/CSSOMTypes.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/build/scripts/templates/CSSOMTypes.cpp.tmpl b/third_party/WebKit/Source/build/scripts/templates/CSSOMTypes.cpp.tmpl
|
| index 232a5287083ea5c0bad14d5d93c122aea0b9127e..fa3ab180b938176f1d640efa83138888d41dbc2a 100644
|
| --- a/third_party/WebKit/Source/build/scripts/templates/CSSOMTypes.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/build/scripts/templates/CSSOMTypes.cpp.tmpl
|
| @@ -6,7 +6,7 @@
|
|
|
| #include "core/css/CSSPropertyMetadata.h"
|
| #include "core/css/cssom/CSSOMKeywords.h"
|
| -#include "core/css/cssom/KeywordValue.h"
|
| +#include "core/css/cssom/CSSKeywordValue.h"
|
| #include "core/css/cssom/LengthValue.h"
|
|
|
| namespace blink {
|
| @@ -20,7 +20,7 @@ bool CSSOMTypes::propertyCanTake(CSSPropertyID id, const StyleValue& styleValue)
|
| }
|
| } else if (styleValue.type() == StyleValue::KeywordType) {
|
| // Keywords are also handled differently.
|
| - return CSSOMKeywords::validKeywordForProperty(id, toKeywordValue(styleValue));
|
| + return CSSOMKeywords::validKeywordForProperty(id, toCSSKeywordValue(styleValue));
|
| }
|
|
|
| switch (id) {
|
|
|