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

Unified Diff: third_party/WebKit/Source/core/css/CSSPaintValue.h

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/CSSPaintValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSPaintValue.h b/third_party/WebKit/Source/core/css/CSSPaintValue.h
index 6aa505cc8eb521179a71dd7739608ce7e9223ead..dcb253750826524f3fe19fefbaa05089b501e5b8 100644
--- a/third_party/WebKit/Source/core/css/CSSPaintValue.h
+++ b/third_party/WebKit/Source/core/css/CSSPaintValue.h
@@ -13,7 +13,7 @@ namespace blink {
class CSSPaintValue : public CSSImageGeneratorValue {
public:
- static RawPtr<CSSPaintValue> create(RawPtr<CSSCustomIdentValue> name)
+ static CSSPaintValue* create(CSSCustomIdentValue* name)
{
return new CSSPaintValue(name);
}
@@ -37,7 +37,7 @@ public:
DECLARE_TRACE_AFTER_DISPATCH();
private:
- explicit CSSPaintValue(RawPtr<CSSCustomIdentValue> name);
+ explicit CSSPaintValue(CSSCustomIdentValue* name);
Member<CSSCustomIdentValue> m_name;
};
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSPageRule.h ('k') | third_party/WebKit/Source/core/css/CSSPaintValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698