| Index: third_party/WebKit/Source/core/css/CSSVariableData.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSVariableData.h b/third_party/WebKit/Source/core/css/CSSVariableData.h
|
| index 697c2da6ce538592fe892182da0f077521801cee..70da92eb5af1cc50190b4e6ba399b3527bddaa67 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSVariableData.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSVariableData.h
|
| @@ -42,6 +42,9 @@ class CSSVariableData : public RefCounted<CSSVariableData> {
|
| const Vector<CSSParserToken>& tokens() const { return m_tokens; }
|
|
|
| bool operator==(const CSSVariableData& other) const;
|
| + bool operator!=(const CSSVariableData& other) const {
|
| + return !(*this == other);
|
| + }
|
|
|
| bool isAnimationTainted() const { return m_isAnimationTainted; }
|
|
|
|
|