Chromium Code Reviews| Index: content/browser/notifications/notification_event_dispatcher_impl.h |
| diff --git a/content/browser/notifications/notification_event_dispatcher_impl.h b/content/browser/notifications/notification_event_dispatcher_impl.h |
| index a0b0399e470cc43f2f234cfb010f91ed9c855d38..c6caf157a64e16497b8d37b1bcba76da63eccbff 100644 |
| --- a/content/browser/notifications/notification_event_dispatcher_impl.h |
| +++ b/content/browser/notifications/notification_event_dispatcher_impl.h |
| @@ -5,6 +5,8 @@ |
| #ifndef CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_EVENT_DISPATCHER_IMPL_H_ |
| #define CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_EVENT_DISPATCHER_IMPL_H_ |
| +#include <map> |
| + |
| #include "base/macros.h" |
| #include "base/memory/singleton.h" |
| #include "content/public/browser/notification_database_data.h" |
| @@ -34,11 +36,28 @@ class NotificationEventDispatcherImpl : public NotificationEventDispatcher { |
| bool by_user, |
| const NotificationDispatchCompleteCallback& dispatch_complete_callback) |
| override; |
| + void DispatchNonPersistentShowEvent( |
| + const std::string& notification_id) override; |
| + void DispatchNonPersistentClickEvent( |
| + const std::string& notification_id) override; |
| + void DispatchNonPersistentCloseEvent( |
| + const std::string& notification_id) override; |
| + |
| + void RendererGone(int renderer_id); |
| + void RegisterNonPersistentNotification(const std::string& notification_id, |
| + int renderer_id, |
| + int non_persistent_id); |
|
Peter Beverloo
2017/06/01 17:56:27
nit: please document these methods
Miguel Garcia
2017/06/02 12:37:13
Done.
|
| private: |
| NotificationEventDispatcherImpl(); |
| ~NotificationEventDispatcherImpl() override; |
| + // Notification Id -> renderer Id |
| + std::map<std::string, int> notification_renderers_; |
| + |
| + // Notification Id -> non persistent Id. |
|
Peter Beverloo
2017/06/01 17:56:27
non-persistent notification id. Probably should na
Miguel Garcia
2017/06/02 12:37:13
Done.
|
| + std::map<std::string, int> notification_ids_; |
| + |
| friend struct base::DefaultSingletonTraits<NotificationEventDispatcherImpl>; |
| DISALLOW_COPY_AND_ASSIGN(NotificationEventDispatcherImpl); |