Chromium Code Reviews| Index: Source/core/css/resolver/StyleResolverState.h |
| diff --git a/Source/core/css/resolver/StyleResolverState.h b/Source/core/css/resolver/StyleResolverState.h |
| index aa559c998d05ab298a11d5da83081b1b4ca6ce9c..71492edcf498a03e657dbeb6aae1f32572f6c278 100644 |
| --- a/Source/core/css/resolver/StyleResolverState.h |
| +++ b/Source/core/css/resolver/StyleResolverState.h |
| @@ -35,10 +35,12 @@ |
| #include "core/style/CachedUAStyle.h" |
| #include "core/style/ComputedStyle.h" |
| #include "core/style/StyleInheritedData.h" |
| +#include "core/style/StyleVariableData.h" |
|
Timothy Loh
2015/07/23 08:11:47
unused include
|
| namespace blink { |
| class CSSAnimationUpdate; |
| +class CSSCustomVariableValue; |
|
Timothy Loh
2015/07/23 08:11:47
unused fwd decl?
|
| class FontDescription; |
| class CORE_EXPORT StyleResolverState { |
| @@ -154,6 +156,8 @@ public: |
| void setHasDirAutoAttribute(bool value) { m_hasDirAutoAttribute = value; } |
| bool hasDirAutoAttribute() const { return m_hasDirAutoAttribute; } |
| + bool documentUsesCSSVariables() const; |
| + |
| private: |
| ElementResolveContext m_elementContext; |
| RawPtrWillBeMember<Document> m_document; |