Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1074)

Unified Diff: third_party/WebKit/Source/core/css/CSSPathValue.cpp

Issue 1858753003: Remove RawPtr from core/css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSPathValue.h ('k') | third_party/WebKit/Source/core/css/CSSPrimitiveValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698