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