| Index: third_party/WebKit/Source/core/css/CSSPathValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSPathValue.cpp b/third_party/WebKit/Source/core/css/CSSPathValue.cpp
|
| index 43421478e261c8400c94ec18799ad3873a9b02b4..78770a3cdad2a8d65ba38f39aee6218c2efe91bb 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPathValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSPathValue.cpp
|
| @@ -9,12 +9,12 @@
|
|
|
| namespace blink {
|
|
|
| -RawPtr<CSSPathValue> CSSPathValue::create(PassRefPtr<StylePath> stylePath)
|
| +CSSPathValue* CSSPathValue::create(PassRefPtr<StylePath> stylePath)
|
| {
|
| return new CSSPathValue(stylePath);
|
| }
|
|
|
| -RawPtr<CSSPathValue> CSSPathValue::create(PassOwnPtr<SVGPathByteStream> pathByteStream)
|
| +CSSPathValue* CSSPathValue::create(PassOwnPtr<SVGPathByteStream> pathByteStream)
|
| {
|
| return CSSPathValue::create(StylePath::create(pathByteStream));
|
| }
|
| @@ -28,7 +28,7 @@ CSSPathValue::CSSPathValue(PassRefPtr<StylePath> stylePath)
|
|
|
| namespace {
|
|
|
| -RawPtr<CSSPathValue> createPathValue()
|
| +CSSPathValue* createPathValue()
|
| {
|
| OwnPtr<SVGPathByteStream> pathByteStream = SVGPathByteStream::create();
|
| // Need to be registered as LSan ignored, as it will be reachable and
|
|
|