| 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 692232579de7c78805ccfe5b57b579e1100ffe23..0d9637442379f46a217aee528d4850822a3abafa 100644
|
| --- a/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
|
| +++ b/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
|
| @@ -11,10 +11,12 @@ void PropertyRegistry::registerProperty(
|
| const CSSSyntaxDescriptor& syntax,
|
| bool inherits,
|
| const CSSValue* initial,
|
| - PassRefPtr<CSSVariableData> initialVariableData) {
|
| + PassRefPtr<CSSVariableData> initialVariableData,
|
| + InterpolationTypes interpolationTypes) {
|
| DCHECK(!registration(name));
|
| m_registrations.set(name, new Registration(syntax, inherits, initial,
|
| - std::move(initialVariableData)));
|
| + std::move(initialVariableData),
|
| + std::move(interpolationTypes)));
|
| }
|
|
|
| const PropertyRegistry::Registration* PropertyRegistry::registration(
|
|
|