| Index: third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBoxAndBool.h
|
| diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBoxAndBool.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBoxAndBool.h
|
| index 1785b72f67006eaae37de1a9e65f5f451733bc48..4c3b44b20563dcd66db6928cd114de4756bfa6bb 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBoxAndBool.h
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthBoxAndBool.h
|
| @@ -53,7 +53,7 @@ class AnimatableLengthBoxAndBool final : public AnimatableValue {
|
|
|
| private:
|
| AnimatableLengthBoxAndBool(PassRefPtr<AnimatableValue> box, bool flag)
|
| - : m_box(box), m_flag(flag) {}
|
| + : m_box(std::move(box)), m_flag(flag) {}
|
| AnimatableType type() const override { return TypeLengthBoxAndBool; }
|
| bool equalTo(const AnimatableValue*) const override;
|
|
|
|
|