| Index: third_party/WebKit/Source/core/animation/TypedInterpolationValue.h
|
| diff --git a/third_party/WebKit/Source/core/animation/TypedInterpolationValue.h b/third_party/WebKit/Source/core/animation/TypedInterpolationValue.h
|
| index ab074cd7b0ba84d1119623bc1c57465e69ac9e2c..c5c318b9cf14546fcb23d7c03076adb414245ee4 100644
|
| --- a/third_party/WebKit/Source/core/animation/TypedInterpolationValue.h
|
| +++ b/third_party/WebKit/Source/core/animation/TypedInterpolationValue.h
|
| @@ -28,7 +28,7 @@ class TypedInterpolationValue {
|
| std::unique_ptr<TypedInterpolationValue> clone() const {
|
| InterpolationValue copy = m_value.clone();
|
| return create(m_type, std::move(copy.interpolableValue),
|
| - copy.nonInterpolableValue.release());
|
| + std::move(copy.nonInterpolableValue));
|
| }
|
|
|
| const InterpolationType& type() const { return m_type; }
|
|
|