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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp

Issue 2382653006: Split CSSPrimitiveValue into CSSPrimitiveValue and CSSIdentifierValue (Closed)
Patch Set: Make check-webkit-style happy Created 4 years, 3 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/core/css/cssom/CSSKeywordValue.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp b/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp
index 361160c1c18dd71c059f7a7da1473e36cff604eb..eb43610af9124e25044328740aba95c80ec669ad 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp
@@ -6,7 +6,7 @@
#include "bindings/core/v8/ExceptionState.h"
#include "core/css/CSSCustomIdentValue.h"
-#include "core/css/CSSPrimitiveValue.h"
+#include "core/css/CSSIdentifierValue.h"
#include "core/css/parser/CSSPropertyParser.h"
namespace blink {
@@ -34,7 +34,7 @@ CSSValue* CSSKeywordValue::toCSSValue() const {
if (keywordID == CSSValueID::CSSValueInvalid) {
return CSSCustomIdentValue::create(m_keywordValue);
}
- return CSSPrimitiveValue::createIdentifier(keywordID);
+ return CSSIdentifierValue::create(keywordID);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698