| Index: third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.h
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.h b/third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.h
|
| index 2890bcad0805f3210e57c60b6b0fba0ac7cca999..783d150214e5ac0884c37f1e62c0c718143e649d 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.h
|
| +++ b/third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "core/animation/SVGInterpolationType.h"
|
| #include "core/svg/SVGLength.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -21,7 +22,7 @@ public:
|
| , m_negativeValuesForbidden(SVGLength::negativeValuesForbiddenForAnimatedLengthAttribute(attribute))
|
| { }
|
|
|
| - static PassOwnPtr<InterpolableValue> neutralInterpolableValue();
|
| + static std::unique_ptr<InterpolableValue> neutralInterpolableValue();
|
| static InterpolationValue convertSVGLength(const SVGLength&);
|
| static SVGLength* resolveInterpolableSVGLength(const InterpolableValue&, const SVGLengthContext&, SVGLengthMode, bool negativeValuesForbidden);
|
|
|
|
|