| Index: third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.h
|
| diff --git a/third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.h b/third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.h
|
| index cf7f0241963c34ce3ca5cb3c857bc6300b3a8299..eaa47c4a5df0f6f7304c6aed9b675fcf3c8f3c6b 100644
|
| --- a/third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.h
|
| +++ b/third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.h
|
| @@ -15,7 +15,7 @@ class LegacyStyleInterpolation : public StyleInterpolation {
|
| public:
|
| static PassRefPtr<LegacyStyleInterpolation> create(PassRefPtr<AnimatableValue> start, PassRefPtr<AnimatableValue> end, CSSPropertyID id)
|
| {
|
| - return adoptRef(new LegacyStyleInterpolation(InterpolableAnimatableValue::create(start), InterpolableAnimatableValue::create(end), id));
|
| + return adoptRef(new LegacyStyleInterpolation(InterpolableAnimatableValue::create(std::move(start)), InterpolableAnimatableValue::create(std::move(end)), id));
|
| }
|
|
|
| void apply(StyleResolverState& state) const override
|
|
|