| Index: third_party/WebKit/Source/core/css/CSSValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSValue.h b/third_party/WebKit/Source/core/css/CSSValue.h
|
| index 27d63e01564d854464e00aa5e073e9b2723ef3ce..8e8e87c8c9f9ffb98eb3c2084e8a802755a4cf32 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSValue.h
|
| @@ -94,6 +94,7 @@ public:
|
| bool isContentDistributionValue() const { return m_classType == CSSContentDistributionClass; }
|
| bool isUnicodeRangeValue() const { return m_classType == UnicodeRangeClass; }
|
| bool isGridLineNamesValue() const { return m_classType == GridLineNamesClass; }
|
| + bool isVariableValue() const { return m_classType == VariableClass; }
|
|
|
| bool hasFailedOrCanceledSubresources() const;
|
|
|
| @@ -146,6 +147,7 @@ protected:
|
| UnicodeRangeClass,
|
| GridTemplateAreasClass,
|
| PathClass,
|
| + VariableClass,
|
|
|
| // SVG classes.
|
| CSSSVGDocumentClass,
|
|
|