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

Unified Diff: Source/web/WebNotification.cpp

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/NotificationPresenterImpl.cpp ('k') | public/web/WebNotification.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebNotification.cpp
diff --git a/Source/web/WebNotification.cpp b/Source/web/WebNotification.cpp
index 58386071a4b9c4c8edf4f4cb68d4a8c3c9026057..91cc927446786860a9fb1ac328aeecae7d14334e 100644
--- a/Source/web/WebNotification.cpp
+++ b/Source/web/WebNotification.cpp
@@ -114,12 +114,12 @@ void WebNotification::dispatchClickEvent()
m_private->dispatchClickEvent();
}
-WebNotification::WebNotification(const WTF::RawPtr<Notification>& notification)
+WebNotification::WebNotification(Notification* notification)
: m_private(notification)
{
}
-WebNotification& WebNotification::operator=(const WTF::RawPtr<Notification>& notification)
+WebNotification& WebNotification::operator=(Notification* notification)
{
m_private = notification;
return *this;
« no previous file with comments | « Source/web/NotificationPresenterImpl.cpp ('k') | public/web/WebNotification.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698