| Index: third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp
|
| index aa63b354e183725b24e1fc441b9c94ceda0fc15e..1a799ac4b0471a2baf2f728c28bc611c1aa64606 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp
|
| @@ -163,7 +163,7 @@ void CSSTranslateInterpolationType::applyStandardPropertyValue(
|
| if (!x.isZero() || !y.isZero() || z != 0)
|
| result = TranslateTransformOperation::create(
|
| x, y, z, TransformOperation::Translate3D);
|
| - state.style()->setTranslate(result.release());
|
| + state.style()->setTranslate(std::move(result));
|
| }
|
|
|
| } // namespace blink
|
|
|