Index: third_party/WebKit/Source/core/animation/animatable/AnimatablePath.cpp |
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.cpp b/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.cpp |
index deb2889bb8db976e596dd4cfcf48b7f1bf4fc45f..872acf388a0715e6c684b4b81bf9f35565ff8408 100644 |
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.cpp |
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatablePath.cpp |
@@ -8,6 +8,7 @@ |
#include "core/svg/SVGPathBlender.h" |
#include "core/svg/SVGPathByteStreamBuilder.h" |
#include "core/svg/SVGPathByteStreamSource.h" |
+#include <memory> |
namespace blink { |
@@ -43,7 +44,7 @@ PassRefPtr<AnimatableValue> AnimatablePath::interpolateTo(const AnimatableValue* |
if (usesDefaultInterpolationWith(value)) |
return defaultInterpolateTo(this, value, fraction); |
- OwnPtr<SVGPathByteStream> byteStream = SVGPathByteStream::create(); |
+ std::unique_ptr<SVGPathByteStream> byteStream = SVGPathByteStream::create(); |
SVGPathByteStreamBuilder builder(*byteStream); |
SVGPathByteStreamSource fromSource(path()->byteStream()); |