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