| 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 33073734ea237cbccda5809da100ddca33e862bf..cf7f0241963c34ce3ca5cb3c857bc6300b3a8299 100644
|
| --- a/third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.h
|
| +++ b/third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "core/animation/StyleInterpolation.h"
|
| #include "core/css/resolver/AnimatedStyleBuilder.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -29,7 +30,7 @@ public:
|
| }
|
|
|
| private:
|
| - LegacyStyleInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, CSSPropertyID id)
|
| + LegacyStyleInterpolation(std::unique_ptr<InterpolableValue> start, std::unique_ptr<InterpolableValue> end, CSSPropertyID id)
|
| : StyleInterpolation(std::move(start), std::move(end), id)
|
| {
|
| }
|
|
|