| Index: third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/StringKeyframe.cpp b/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| index 6b5fdaf590fc31a07b046971f8338a63919d2775..5d3f3accb1c857bf07a356e5bbd2503a9571b2d7 100644
|
| --- a/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| @@ -95,7 +95,7 @@ bool StringKeyframe::CSSPropertySpecificKeyframe::populateAnimatableValue(CSSPro
|
|
|
| PassRefPtr<Keyframe::PropertySpecificKeyframe> StringKeyframe::CSSPropertySpecificKeyframe::neutralKeyframe(double offset, PassRefPtr<TimingFunction> easing) const
|
| {
|
| - return create(offset, easing, nullptr, EffectModel::CompositeAdd);
|
| + return create(offset, std::move(easing), nullptr, EffectModel::CompositeAdd);
|
| }
|
|
|
| PassRefPtr<Keyframe::PropertySpecificKeyframe> StringKeyframe::CSSPropertySpecificKeyframe::cloneWithOffset(double offset) const
|
| @@ -112,7 +112,7 @@ PassRefPtr<Keyframe::PropertySpecificKeyframe> SVGPropertySpecificKeyframe::clon
|
|
|
| PassRefPtr<Keyframe::PropertySpecificKeyframe> SVGPropertySpecificKeyframe::neutralKeyframe(double offset, PassRefPtr<TimingFunction> easing) const
|
| {
|
| - return create(offset, easing, String(), EffectModel::CompositeAdd);
|
| + return create(offset, std::move(easing), String(), EffectModel::CompositeAdd);
|
| }
|
|
|
| } // namespace blink
|
|
|