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

Unified Diff: content/child/notifications/notification_manager.h

Issue 2496653002: Part 2 of base::IDMap refactor to eliminate IDMapOwnPointer/IDMapExternalPointer modes (Closed)
Patch Set: typedefs => using statements, update comments in base/id_map.h Created 4 years 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 | « content/child/fileapi/file_system_dispatcher.cc ('k') | content/child/push_messaging/push_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/notifications/notification_manager.h
diff --git a/content/child/notifications/notification_manager.h b/content/child/notifications/notification_manager.h
index d25f16389969f0130e1d0cef957a9b3b815feeca..e8f8bc22ed4e83a4cecf4dc98199739e0d4baacc 100644
--- a/content/child/notifications/notification_manager.h
+++ b/content/child/notifications/notification_manager.h
@@ -82,11 +82,11 @@ class NotificationManager : public blink::WebNotificationManager,
scoped_refptr<NotificationDispatcher> notification_dispatcher_;
// Tracks pending requests for getting a list of notifications.
- IDMap<blink::WebNotificationGetCallbacks, IDMapOwnPointer>
+ IDMap<std::unique_ptr<blink::WebNotificationGetCallbacks>>
pending_get_notification_requests_;
// Tracks pending requests for displaying persistent notifications.
- IDMap<blink::WebNotificationShowCallbacks, IDMapOwnPointer>
+ IDMap<std::unique_ptr<blink::WebNotificationShowCallbacks>>
pending_show_notification_requests_;
// Structure holding the information for active non-persistent notifications.
« no previous file with comments | « content/child/fileapi/file_system_dispatcher.cc ('k') | content/child/push_messaging/push_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698