| 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 e38f5b44e8ede4a53c365531d7df1f3f60dc40dc..120a49067fe9faafbcad86b71e173da1184f9885 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -1934,7 +1934,7 @@ static PassRefPtrWillBeRawPtr<CSSValue> consumePath(CSSParserTokenRange& range)
|
| return nullptr;
|
| String pathString = functionArgs.consumeIncludingWhitespace().value();
|
|
|
| - OwnPtr<SVGPathByteStream> byteStream = SVGPathByteStream::create();
|
| + RefPtr<SVGPathByteStream> byteStream = SVGPathByteStream::create();
|
| if (!buildByteStreamFromString(pathString, *byteStream) || !functionArgs.atEnd())
|
| return nullptr;
|
|
|
|
|