| Index: third_party/WebKit/Source/core/css/PropertyRegistry.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/PropertyRegistry.cpp b/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
|
| index a06c989520cc36573d4179800724041a869be9a8..c23bc1173f125d737e57c7edddcb5cd2fdb61764 100644
|
| --- a/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
|
| +++ b/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
|
| @@ -6,12 +6,12 @@
|
|
|
| namespace blink {
|
|
|
| -void PropertyRegistry::registerProperty(const AtomicString& name, const CSSSyntaxDescriptor& syntax, bool inherits, const CSSValue* initial)
|
| +void PropertyRegistry::registerProperty(const AtomicString& name, const CSSSyntaxDescriptor& syntax, bool inherits, const CSSValue* initial, PassRefPtr<CSSVariableData> initialVariableData)
|
| {
|
| DCHECK(!registration(name));
|
| // TODO(timloh): We only support inherited properties for now.
|
| inherits = true;
|
| - m_registrations.set(name, new Registration(syntax, inherits, initial));
|
| + m_registrations.set(name, new Registration(syntax, inherits, initial, initialVariableData));
|
| }
|
|
|
| void PropertyRegistry::unregisterProperty(const AtomicString& name)
|
|
|