| Index: third_party/WebKit/Source/core/animation/InterpolableValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/InterpolableValue.cpp b/third_party/WebKit/Source/core/animation/InterpolableValue.cpp
|
| index d5a4c5da0969a1e9922b9b12a8fd793237eb093e..084ecf872d1528bf54715c84fea717f8996105a0 100644
|
| --- a/third_party/WebKit/Source/core/animation/InterpolableValue.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/InterpolableValue.cpp
|
| @@ -67,7 +67,7 @@ PassOwnPtr<InterpolableValue> InterpolableList::cloneAndZero() const
|
| OwnPtr<InterpolableList> result = InterpolableList::create(m_size);
|
| for (size_t i = 0; i < m_size; i++)
|
| result->set(i, m_values[i]->cloneAndZero());
|
| - return result.release();
|
| + return std::move(result);
|
| }
|
|
|
| void InterpolableNumber::scale(double scale)
|
|
|