| 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 f9c351cfc46c6ddeb47c3c8a869ce2dda7cb3b08..e4aba04d55c7874178a4ce66387f090588a413e2 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.h
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.h
|
| @@ -20,7 +20,7 @@ public:
|
| }
|
| void setPropertyValue(CSSPropertyID property, PassRefPtr<AnimatableValue> value)
|
| {
|
| - m_propertyValues.set(property, value);
|
| + m_propertyValues.set(property, std::move(value));
|
| }
|
| void clearPropertyValue(CSSPropertyID property) { m_propertyValues.remove(property); }
|
| AnimatableValue* propertyValue(CSSPropertyID property) const
|
|
|