| 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 a7248c3aad9979e7178f6be90c775a4c0b7e4a20..65d272427047ba108fe4dc2d9880149594d30299 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h
|
| @@ -40,7 +40,7 @@ public:
|
| ~AnimatableLengthPoint() override { }
|
| static PassRefPtr<AnimatableLengthPoint> create(PassRefPtr<AnimatableValue> x, PassRefPtr<AnimatableValue> y)
|
| {
|
| - return adoptRef(new AnimatableLengthPoint(x, y));
|
| + return adoptRef(new AnimatableLengthPoint(std::move(x), std::move(y)));
|
| }
|
| const AnimatableValue* x() const { return m_x.get(); }
|
| const AnimatableValue* y() const { return m_y.get(); }
|
|
|