| Index: third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.h
|
| diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.h
|
| index bb3f5ea9506ae4a34be55e72effc1eb31a90c660..da23b9d81f0fe169caef966af78176b6c04718e3 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.h
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.h
|
| @@ -34,7 +34,7 @@ public:
|
| public:
|
| static PassRefPtr<PropertySpecificKeyframe> create(double offset, PassRefPtr<TimingFunction> easing, PassRefPtr<AnimatableValue> value, EffectModel::CompositeOperation composite)
|
| {
|
| - return adoptRef(new PropertySpecificKeyframe(offset, easing, value, composite));
|
| + return adoptRef(new PropertySpecificKeyframe(offset, std::move(easing), std::move(value), composite));
|
| }
|
|
|
| AnimatableValue* value() const { return m_value.get(); }
|
| @@ -45,7 +45,7 @@ public:
|
|
|
| private:
|
| PropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> easing, PassRefPtr<AnimatableValue> value, EffectModel::CompositeOperation composite)
|
| - : Keyframe::PropertySpecificKeyframe(offset, easing, composite)
|
| + : Keyframe::PropertySpecificKeyframe(offset, std::move(easing), composite)
|
| , m_value(value)
|
| { }
|
|
|
|
|