| Index: third_party/WebKit/Source/core/css/CSSPathValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSPathValue.h b/third_party/WebKit/Source/core/css/CSSPathValue.h
|
| index 99e3e7998865b03be9c742bdbde5e35583b1a564..0d9a1f0601401a8442b259d88d401b600a930bd1 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPathValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSPathValue.h
|
| @@ -10,6 +10,7 @@
|
| #include "core/svg/SVGPathByteStream.h"
|
| #include "wtf/PassRefPtr.h"
|
| #include "wtf/RefPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -18,7 +19,7 @@ class StylePath;
|
| class CSSPathValue : public CSSValue {
|
| public:
|
| static CSSPathValue* create(PassRefPtr<StylePath>);
|
| - static CSSPathValue* create(PassOwnPtr<SVGPathByteStream>);
|
| + static CSSPathValue* create(std::unique_ptr<SVGPathByteStream>);
|
|
|
| static CSSPathValue& emptyPathValue();
|
|
|
|
|