| 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 a642fd968fe3873c25a2ec191a82c94211c04ab5..e130e65ac63c49302e264f04e971fd533a490da9 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h
|
| @@ -92,12 +92,16 @@ public:
|
| static bool isValidNumericValue(double);
|
|
|
| private:
|
| - CSSPropertyParser(CSSParserValueList*, const CSSParserTokenRange&, const CSSParserContext&,
|
| + CSSPropertyParser(const CSSParserTokenRange&, const CSSParserContext&,
|
| WillBeHeapVector<CSSProperty, 256>&);
|
|
|
| - bool parseValue(CSSPropertyID, bool important);
|
| + // TODO(timloh): Rename once the CSSParserValue-based parseValue is removed
|
| + bool parseValueStart(CSSPropertyID unresolvedProperty, bool important);
|
| + bool consumeCSSWideKeyword(CSSPropertyID unresolvedProperty, bool important);
|
| PassRefPtrWillBeRawPtr<CSSValue> parseSingleValue(CSSPropertyID);
|
|
|
| + bool parseValue(CSSPropertyID, bool important);
|
| +
|
| bool inShorthand() const { return m_inParseShorthand; }
|
| bool inQuirksMode() const { return isQuirksModeBehavior(m_context.mode()); }
|
|
|
|
|