| 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 7bb0153b1deef295a1fd0ac7ffecd26e70d15a90..478893a5c0881f59c55449715f2551d4d257b6b8 100644
|
| --- a/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
|
| +++ b/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
|
| @@ -12,12 +12,12 @@ void PropertyRegistry::registerProperty(
|
| bool inherits,
|
| const CSSValue* initial,
|
| PassRefPtr<CSSVariableData> initialVariableData,
|
| - InterpolationTypes interpolationTypes) {
|
| + CSSInterpolationTypes cssInterpolationTypes) {
|
| DCHECK(!registration(name));
|
| - m_registrations.set(name,
|
| - new PropertyRegistration(syntax, inherits, initial,
|
| - std::move(initialVariableData),
|
| - std::move(interpolationTypes)));
|
| + m_registrations.set(
|
| + name, new PropertyRegistration(syntax, inherits, initial,
|
| + std::move(initialVariableData),
|
| + std::move(cssInterpolationTypes)));
|
| }
|
|
|
| const PropertyRegistration* PropertyRegistry::registration(
|
|
|