Index: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
index 94b727a64180de46220d13552b3f5abe8355c1c5..cdfe75ff20c5f27efd7768bba1cde486d66d1067 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -47,7 +47,6 @@ |
#include "core/layout/LayoutTheme.h" |
#include "core/svg/SVGPathUtilities.h" |
#include "wtf/text/StringBuilder.h" |
-#include <memory> |
namespace blink { |
@@ -1515,7 +1514,7 @@ static CSSValue* consumePath(CSSParserTokenRange& range) |
return nullptr; |
String pathString = functionArgs.consumeIncludingWhitespace().value().toString(); |
- std::unique_ptr<SVGPathByteStream> byteStream = SVGPathByteStream::create(); |
+ OwnPtr<SVGPathByteStream> byteStream = SVGPathByteStream::create(); |
if (buildByteStreamFromString(pathString, *byteStream) != SVGParseStatus::NoError |
|| !functionArgs.atEnd()) |
return nullptr; |