| Index: third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
|
| index 9516ddeb0188f36a4b4c7b19b49c091218d1875e..2dcae1b9d0019c90efd58e8a5e3fc3d7d8e2bec8 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
|
| @@ -76,7 +76,7 @@ InterpolationValue CSSPaintInterpolationType::maybeConvertValue(const CSSValue&
|
| OwnPtr<InterpolableValue> interpolableColor = CSSColorInterpolationType::maybeCreateInterpolableColor(value);
|
| if (!interpolableColor)
|
| return nullptr;
|
| - return InterpolationValue(interpolableColor.release());
|
| + return InterpolationValue(std::move(interpolableColor));
|
| }
|
|
|
| InterpolationValue CSSPaintInterpolationType::maybeConvertUnderlyingValue(const InterpolationEnvironment& environment) const
|
|
|