| Index: Source/core/css/CSSStyleDeclaration.h
|
| diff --git a/Source/core/css/CSSStyleDeclaration.h b/Source/core/css/CSSStyleDeclaration.h
|
| index 0459adcbbc56d3a09ccd37205dbf2f0d0746b3fe..e98ba71f6a7240dffee9ee4d41804f455ae461d4 100644
|
| --- a/Source/core/css/CSSStyleDeclaration.h
|
| +++ b/Source/core/css/CSSStyleDeclaration.h
|
| @@ -23,6 +23,7 @@
|
|
|
| #include "CSSPropertyNames.h"
|
| #include "bindings/v8/ScriptWrappable.h"
|
| +#include "core/css/CSSVariablesIterator.h"
|
| #include "core/css/CSSVariablesMap.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/Noncopyable.h"
|
| @@ -65,6 +66,7 @@ public:
|
| virtual void setVariableValue(const AtomicString& name, const String& value, ExceptionCode&) = 0;
|
| virtual bool removeVariable(const AtomicString& name) = 0;
|
| virtual void clearVariables(ExceptionCode&) = 0;
|
| + virtual PassRefPtr<CSSVariablesIterator> variablesIterator() const = 0;
|
|
|
| // CSSPropertyID versions of the CSSOM functions to support bindings and editing.
|
| // Use the non-virtual methods in the concrete subclasses when possible.
|
|
|