| 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 0d9637442379f46a217aee528d4850822a3abafa..7bb0153b1deef295a1fd0ac7ffecd26e70d15a90 100644
|
| --- a/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
|
| +++ b/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
|
| @@ -14,12 +14,13 @@ void PropertyRegistry::registerProperty(
|
| PassRefPtr<CSSVariableData> initialVariableData,
|
| InterpolationTypes interpolationTypes) {
|
| DCHECK(!registration(name));
|
| - m_registrations.set(name, new Registration(syntax, inherits, initial,
|
| - std::move(initialVariableData),
|
| - std::move(interpolationTypes)));
|
| + m_registrations.set(name,
|
| + new PropertyRegistration(syntax, inherits, initial,
|
| + std::move(initialVariableData),
|
| + std::move(interpolationTypes)));
|
| }
|
|
|
| -const PropertyRegistry::Registration* PropertyRegistry::registration(
|
| +const PropertyRegistration* PropertyRegistry::registration(
|
| const AtomicString& name) const {
|
| return m_registrations.get(name);
|
| }
|
|
|