| Index: third_party/WebKit/Source/core/animation/InterpolableValue.h
|
| diff --git a/third_party/WebKit/Source/core/animation/InterpolableValue.h b/third_party/WebKit/Source/core/animation/InterpolableValue.h
|
| index 960c2036888e07ccc98420188279755adeefa891..94e0ac0a1dac7c1ac9b881f71669e2ee70a87db0 100644
|
| --- a/third_party/WebKit/Source/core/animation/InterpolableValue.h
|
| +++ b/third_party/WebKit/Source/core/animation/InterpolableValue.h
|
| @@ -164,7 +164,7 @@ class InterpolableAnimatableValue : public InterpolableValue {
|
| RefPtr<AnimatableValue> m_value;
|
|
|
| InterpolableAnimatableValue(PassRefPtr<AnimatableValue> value)
|
| - : m_value(value) {}
|
| + : m_value(std::move(value)) {}
|
| };
|
|
|
| DEFINE_TYPE_CASTS(InterpolableNumber,
|
|
|