Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(627)

Unified Diff: Source/core/css/resolver/StyleResolverState.h

Issue 1192983003: CSS Custom Properties (Variables) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ToT-ed again... Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698