Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(386)

Unified Diff: third_party/WebKit/Source/build/scripts/templates/CSSOMTypes.cpp.tmpl

Issue 1957163002: Rename KeywordValue to CSSKeywordValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {
« no previous file with comments | « third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl ('k') | third_party/WebKit/Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698