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

Unified Diff: third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.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/CSSOMKeywords.cpp.tmpl
diff --git a/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl b/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
index 053f7a878176233e3bdeebebd86a839332c960f6..9bc58ac8f506b6a84721df4ce76130eb9e2e7849 100644
--- a/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
+++ b/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
@@ -4,7 +4,7 @@
#include "core/css/cssom/CSSOMKeywords.h"
-#include "core/css/cssom/KeywordValue.h"
+#include "core/css/cssom/CSSKeywordValue.h"
#include "wtf/HashMap.h"
namespace blink {
@@ -37,7 +37,7 @@ KeywordTable& keywordTable()
} // namespace
-bool CSSOMKeywords::validKeywordForProperty(CSSPropertyID id, const KeywordValue& keyword)
+bool CSSOMKeywords::validKeywordForProperty(CSSPropertyID id, const CSSKeywordValue& keyword)
{
CSSValueID valueID = keyword.keywordValueID();
if (valueID == CSSValueInvalid) {

Powered by Google App Engine
This is Rietveld 408576698