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

Unified Diff: third_party/WebKit/Source/core/css/CSSShadowValue.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
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSShadowValue.h ('k') | third_party/WebKit/Source/core/css/CSSValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/CSSShadowValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSShadowValue.cpp b/third_party/WebKit/Source/core/css/CSSShadowValue.cpp
index d938749eff03b0cdb6748fc27bcfaa12b7e0a0ff..6ae71871d46020cd2d73924f8a359bd68c9c4273 100644
--- a/third_party/WebKit/Source/core/css/CSSShadowValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSShadowValue.cpp
@@ -19,6 +19,7 @@
*/
#include "core/css/CSSShadowValue.h"
+#include "core/css/CSSIdentifierValue.h"
#include "core/css/CSSPrimitiveValue.h"
#include "wtf/text/StringBuilder.h"
#include "wtf/text/WTFString.h"
@@ -30,7 +31,7 @@ CSSShadowValue::CSSShadowValue(CSSPrimitiveValue* x,
CSSPrimitiveValue* y,
CSSPrimitiveValue* blur,
CSSPrimitiveValue* spread,
- CSSPrimitiveValue* style,
+ CSSIdentifierValue* style,
CSSValue* color)
: CSSValue(ShadowClass),
x(x),
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSShadowValue.h ('k') | third_party/WebKit/Source/core/css/CSSValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698