| Index: third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
|
| index f6a5cd066dfac1716fd23b3de5a96343cf7729d0..24a105bba073306b5587739924560c25a2b8eeae 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
|
| @@ -305,11 +305,11 @@ void CSSInterpolationType::ApplyCustomPropertyValue(
|
| const AtomicString& property_name = property.CustomPropertyName();
|
| DCHECK(registration_);
|
| if (registration_->Inherits()) {
|
| - style.SetResolvedInheritedVariable(property_name, variable_data.Release(),
|
| + style.SetResolvedInheritedVariable(property_name, std::move(variable_data),
|
| css_value);
|
| } else {
|
| style.SetResolvedNonInheritedVariable(property_name,
|
| - variable_data.Release(), css_value);
|
| + std::move(variable_data), css_value);
|
| }
|
| }
|
|
|
|
|