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 ecd2bcbe6ccc31d7c3e18f82e90c822a3506e36c..d7e8419134371f27c8297db7ebac0d14df60aafb 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h |
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h |
@@ -45,7 +45,7 @@ public: |
HeapVector<CSSProperty, 256>&, StyleRule::RuleType); |
// Parses a non-shorthand CSS property |
- static CSSValue* parseSingleValue(CSSPropertyID, const CSSParserTokenRange&, const CSSParserContext&); |
+ static const CSSValue* parseSingleValue(CSSPropertyID, const CSSParserTokenRange&, const CSSParserContext&); |
private: |
CSSPropertyParser(const CSSParserTokenRange&, const CSSParserContext&, |
@@ -54,7 +54,7 @@ private: |
// TODO(timloh): Rename once the CSSParserValue-based parseValue is removed |
bool parseValueStart(CSSPropertyID unresolvedProperty, bool important); |
bool consumeCSSWideKeyword(CSSPropertyID unresolvedProperty, bool important); |
- CSSValue* parseSingleValue(CSSPropertyID, CSSPropertyID = CSSPropertyInvalid); |
+ const CSSValue* parseSingleValue(CSSPropertyID, CSSPropertyID = CSSPropertyInvalid); |
bool inQuirksMode() const { return isQuirksModeBehavior(m_context.mode()); } |