| Index: third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBox.h
|
| diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBox.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBox.h
|
| index 4fcc7c7ccc36c9a9e0cb89fe6ce6ed0220ee0944..2957f37f86afabbec5855e82d0d0806608280d74 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBox.h
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBox.h
|
| @@ -40,7 +40,7 @@ public:
|
| ~AnimatableLengthBox() override { }
|
| static PassRefPtr<AnimatableLengthBox> create(PassRefPtr<AnimatableValue> left, PassRefPtr<AnimatableValue> right, PassRefPtr<AnimatableValue> top, PassRefPtr<AnimatableValue> bottom)
|
| {
|
| - return adoptRef(new AnimatableLengthBox(left, right, top, bottom));
|
| + return adoptRef(new AnimatableLengthBox(std::move(left), std::move(right), std::move(top), std::move(bottom)));
|
| }
|
| const AnimatableValue* left() const { return m_left.get(); }
|
| const AnimatableValue* right() const { return m_right.get(); }
|
|
|