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