Index: third_party/WebKit/Source/core/css/parser/CSSParserImpl.h |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.h b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.h |
index a06caeeb2841a33492cfa293383308843814f879..dadc1a169a78d71275a05c706c8e22c16539d7ac 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.h |
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.h |
@@ -55,6 +55,7 @@ public: |
}; |
static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, const CSSParserContext&); |
+ static bool parseVariableValue(MutableStylePropertySet*, const AtomicString& propertyName, const String&, bool important, const CSSParserContext&); |
static PassRefPtrWillBeRawPtr<ImmutableStylePropertySet> parseInlineStyleDeclaration(const String&, Element*); |
static bool parseDeclarationList(MutableStylePropertySet*, const String&, const CSSParserContext&); |
static PassRefPtrWillBeRawPtr<StyleRuleBase> parseRule(const String&, const CSSParserContext&, StyleSheetContents*, AllowedRulesType); |
@@ -98,7 +99,7 @@ private: |
void consumeDeclarationList(CSSParserTokenRange, StyleRule::Type); |
void consumeDeclaration(CSSParserTokenRange, StyleRule::Type); |
void consumeDeclarationValue(CSSParserTokenRange, CSSPropertyID, bool important, StyleRule::Type); |
- void consumeVariableDeclarationValue(CSSParserTokenRange, const AtomicString& variableName, bool important); |
+ void consumeVariableValue(CSSParserTokenRange, const AtomicString& propertyName, bool important); |
static PassOwnPtr<Vector<double>> consumeKeyframeKeyList(CSSParserTokenRange); |