| Index: third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h
|
| diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h
|
| index 4654a7114eefd26f58fffe6690b4743dcd07beb6..cb2bf0699062afff12dbdb1657fd9afc3cc8156a 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h
|
| @@ -54,7 +54,7 @@ class AnimatableLengthPoint final : public AnimatableValue {
|
| private:
|
| AnimatableLengthPoint(PassRefPtr<AnimatableValue> x,
|
| PassRefPtr<AnimatableValue> y)
|
| - : m_x(x), m_y(y) {}
|
| + : m_x(std::move(x)), m_y(std::move(y)) {}
|
| AnimatableType type() const override { return TypeLengthPoint; }
|
| bool equalTo(const AnimatableValue*) const override;
|
|
|
|
|