Index: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h |
index a2855568c4797790739accd78c6a45f70824b220..2b6faa8846d3d6f0f989fe4b4951babb8f89189c 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h |
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h |
@@ -23,6 +23,7 @@ |
#ifndef CSSPropertyParser_h |
#define CSSPropertyParser_h |
+#include "core/css/CSSColorValue.h" |
#include "core/css/CSSGradientValue.h" |
#include "core/css/CSSGridTemplateAreasValue.h" |
#include "core/css/CSSPropertySourceData.h" |
@@ -203,7 +204,7 @@ private: |
bool parseColorParameters(const CSSParserValue*, int* colorValues, bool parseAlpha); |
bool parseHSLParameters(const CSSParserValue*, double* colorValues, bool parseAlpha); |
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseColor(const CSSParserValue*, bool acceptQuirkyColors = false); |
+ PassRefPtrWillBeRawPtr<CSSValue> parseColor(const CSSParserValue*, bool acceptQuirkyColors = false); |
bool parseColorFromValue(const CSSParserValue*, RGBA32&, bool acceptQuirkyColors = false); |
bool acceptQuirkyColors(CSSPropertyID) const; |
@@ -353,7 +354,7 @@ private: |
bool buildBorderImageParseContext(CSSPropertyID, BorderImageParseContext&); |
bool parseDeprecatedGradientColorStop(CSSParserValue*, CSSGradientColorStop&); |
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseDeprecatedGradientStopColor(const CSSParserValue*); |
+ PassRefPtrWillBeRawPtr<CSSValue> parseDeprecatedGradientStopColor(const CSSParserValue*); |
void commitBorderImageProperty(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValue>, bool important); |