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

Unified Diff: public/web/WebNotification.h

Issue 329463004: Oilpan: remove RawPtr<> usage for WebNotification. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Source/web/WebNotification.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebNotification.h
diff --git a/public/web/WebNotification.h b/public/web/WebNotification.h
index 3306c1b892d6b91b6be3fb31623afb71c37022c1..1b9587a7cd2d1b82748bcca62563b267895f5a26 100644
--- a/public/web/WebNotification.h
+++ b/public/web/WebNotification.h
@@ -93,8 +93,8 @@ public:
void dispatchDisplayEvent() { dispatchShowEvent(); }
#if BLINK_IMPLEMENTATION
- WebNotification(const WTF::RawPtr<WebCore::Notification>&);
- WebNotification& operator=(const WTF::RawPtr<WebCore::Notification>&);
+ WebNotification(WebCore::Notification*);
+ WebNotification& operator=(WebCore::Notification*);
#endif
private:
« no previous file with comments | « Source/web/WebNotification.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698