| 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 fca9ed24622a6a0bf600f6f57e7f0b13e9456a6f..5b5db3ea68bfd6add320271352adac639e31b852 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBox.h
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBox.h
|
| @@ -61,7 +61,10 @@ class AnimatableLengthBox final : public AnimatableValue {
|
| PassRefPtr<AnimatableValue> right,
|
| PassRefPtr<AnimatableValue> top,
|
| PassRefPtr<AnimatableValue> bottom)
|
| - : m_left(left), m_right(right), m_top(top), m_bottom(bottom) {}
|
| + : m_left(std::move(left)),
|
| + m_right(std::move(right)),
|
| + m_top(std::move(top)),
|
| + m_bottom(std::move(bottom)) {}
|
| AnimatableType type() const override { return TypeLengthBox; }
|
| bool equalTo(const AnimatableValue*) const override;
|
|
|
|
|