| 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 dc92019ae8f402c0089bf6c579e06be46efa532d..993ddf9dfb7445f542c8aa8703afe7ee851e1dec 100644
|
| --- a/third_party/WebKit/Source/core/animation/TypedInterpolationValue.h
|
| +++ b/third_party/WebKit/Source/core/animation/TypedInterpolationValue.h
|
| @@ -22,7 +22,7 @@ public:
|
| PassOwnPtr<TypedInterpolationValue> clone() const
|
| {
|
| InterpolationValue copy = m_value.clone();
|
| - return create(m_type, copy.interpolableValue.release(), copy.nonInterpolableValue.release());
|
| + return create(m_type, std::move(copy.interpolableValue), copy.nonInterpolableValue.release());
|
| }
|
|
|
| const InterpolationType& type() const { return m_type; }
|
|
|