| Index: third_party/WebKit/Source/core/animation/CSSMotionRotationInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSMotionRotationInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSMotionRotationInterpolationType.cpp
|
| index 8b4335923c7cecc18ccbdd6deb77649dd8719565..34cf81d336a8159bfc3a2784e86236565cd4dda1 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSMotionRotationInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSMotionRotationInterpolationType.cpp
|
| @@ -115,8 +115,8 @@ PairwiseInterpolationValue CSSMotionRotationInterpolationType::maybeMergeSingles
|
| if (startType != endType)
|
| return nullptr;
|
| return PairwiseInterpolationValue(
|
| - start.interpolableValue.release(),
|
| - end.interpolableValue.release(),
|
| + std::move(start.interpolableValue),
|
| + std::move(end.interpolableValue),
|
| start.nonInterpolableValue.release());
|
| }
|
|
|
|
|