| Index: third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| index 30cd2a8eb59cd74d2dd38efe638150e9363ec1cf..b4c1dbcef6fd05e1c2f0be1901afe6911b510c76 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| @@ -134,7 +134,7 @@ InterpolationValue CSSImageListInterpolationType::maybeConvertValue(
|
| if (!component)
|
| return nullptr;
|
| interpolableList->set(i, std::move(component.interpolableValue));
|
| - nonInterpolableValues[i] = component.nonInterpolableValue.release();
|
| + nonInterpolableValues[i] = std::move(component.nonInterpolableValue);
|
| }
|
| return InterpolationValue(
|
| std::move(interpolableList),
|
|
|