| Index: third_party/WebKit/Source/core/style/StyleInheritedVariables.h
|
| diff --git a/third_party/WebKit/Source/core/style/StyleInheritedVariables.h b/third_party/WebKit/Source/core/style/StyleInheritedVariables.h
|
| index 1668f3211d2e77e192518bc97290ecf3fb0c3517..bde383f30164edaf9151b93fc3f3ad21f9dc888e 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleInheritedVariables.h
|
| +++ b/third_party/WebKit/Source/core/style/StyleInheritedVariables.h
|
| @@ -51,8 +51,13 @@ class StyleInheritedVariables : public RefCounted<StyleInheritedVariables> {
|
|
|
| friend class CSSVariableResolver;
|
|
|
| + // Variables registered in this node.
|
| HashMap<AtomicString, RefPtr<CSSVariableData>> m_data;
|
| +
|
| + // Custom property values, registered with registerProperty().
|
| HashMap<AtomicString, Persistent<CSSValue>> m_registeredData;
|
| +
|
| + // Parent variable values to inherit from.
|
| RefPtr<StyleInheritedVariables> m_root;
|
| };
|
|
|
|
|