Index: third_party/WebKit/Source/core/animation/InterpolationType.h |
diff --git a/third_party/WebKit/Source/core/animation/InterpolationType.h b/third_party/WebKit/Source/core/animation/InterpolationType.h |
index 68ddba1c75f77c5250b716c635c7c4a106bc7ad3..07f61adc5c83e5844a81c0d73c181fba2b08ee59 100644 |
--- a/third_party/WebKit/Source/core/animation/InterpolationType.h |
+++ b/third_party/WebKit/Source/core/animation/InterpolationType.h |
@@ -13,6 +13,7 @@ |
#include "core/animation/UnderlyingValueOwner.h" |
#include "platform/heap/Handle.h" |
#include "wtf/Allocator.h" |
+#include <memory> |
namespace blink { |
@@ -46,7 +47,7 @@ public: |
{ } |
const InterpolationType* m_type; |
}; |
- using ConversionCheckers = Vector<OwnPtr<ConversionChecker>>; |
+ using ConversionCheckers = Vector<std::unique_ptr<ConversionChecker>>; |
virtual PairwiseInterpolationValue maybeConvertPairwise(const PropertySpecificKeyframe& startKeyframe, const PropertySpecificKeyframe& endKeyframe, const InterpolationEnvironment& environment, const InterpolationValue& underlying, ConversionCheckers& conversionCheckers) const |
{ |