OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_NOTIFICATIONS_PERSISTENT_NOTIFICATION_HANDLER_H_ |
| 6 #define CHROME_BROWSER_NOTIFICATIONS_PERSISTENT_NOTIFICATION_HANDLER_H_ |
| 7 |
| 8 #include "base/macros.h" |
| 9 #include "chrome/browser/notifications/notification_handler.h" |
| 10 |
| 11 class NotificationDelegate; |
| 12 |
| 13 // NotificationHandler implementation for persistent, service worker backed, |
| 14 // notifications. |
| 15 class PersistentNotificationHandler : public NotificationHandler { |
| 16 public: |
| 17 PersistentNotificationHandler(); |
| 18 ~PersistentNotificationHandler() override; |
| 19 |
| 20 // NotificationHandler implementation |
| 21 void OnClose(Profile* profile, |
| 22 const std::string& origin, |
| 23 const std::string& notification_id, |
| 24 bool by_user) override; |
| 25 |
| 26 void OnClick(Profile* profile, |
| 27 const std::string& origin, |
| 28 const std::string& notification_id, |
| 29 int action_index) override; |
| 30 |
| 31 void OpenSettings(Profile* profile) override; |
| 32 |
| 33 void RegisterNotification(const std::string& notification_id, |
| 34 NotificationDelegate* delegate) override; |
| 35 |
| 36 private: |
| 37 DISALLOW_COPY_AND_ASSIGN(PersistentNotificationHandler); |
| 38 }; |
| 39 |
| 40 #endif // CHROME_BROWSER_NOTIFICATIONS_PERSISTENT_NOTIFICATION_HANDLER_H_ |
OLD | NEW |