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

Unified Diff: Source/modules/notifications/Notification.cpp

Issue 216523002: Oilpan: Replace most of RefPtrs for Event objects with oilpan's transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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: Source/modules/notifications/Notification.cpp
diff --git a/Source/modules/notifications/Notification.cpp b/Source/modules/notifications/Notification.cpp
index 7c67d3280e06d8efa74573f5f7f58116a07fd396..97091595899eb4c3d79d9865dfd5e9633ae33819 100644
--- a/Source/modules/notifications/Notification.cpp
+++ b/Source/modules/notifications/Notification.cpp
@@ -170,7 +170,7 @@ void Notification::requestPermission(ExecutionContext* context, PassOwnPtr<Notif
NotificationController::from(toDocument(context)->page())->client()->requestPermission(context, callback);
}
-bool Notification::dispatchEvent(PassRefPtr<Event> event)
+bool Notification::dispatchEvent(PassRefPtrWillBeRawPtr<Event> event)
{
ASSERT(m_state != Closed);

Powered by Google App Engine
This is Rietveld 408576698