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_NOTIFICATION_COMMON_H_ | 5 #ifndef CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_COMMON_H_ |
6 #define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_COMMON_H_ | 6 #define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_COMMON_H_ |
7 | 7 |
8 namespace content { | 8 namespace content { |
9 class BrowserContext; | 9 class BrowserContext; |
10 } // namespace content | 10 } // namespace content |
11 | 11 |
12 // Shared functionality for both in page and persistent notification | 12 // Shared functionality for both in page and persistent notification |
13 class NotificationCommon { | 13 class NotificationCommon { |
14 public: | 14 public: |
15 // Things as user can do to a notification. | 15 // Things as user can do to a notification. |
16 enum Operation { | 16 enum Operation { |
17 CLICK = 0, | 17 CLICK = 0, |
18 CLOSE = 1, | 18 CLOSE = 1, |
19 SETTINGS = 2, | 19 SETTINGS = 2, |
20 OPERATION_MAX = SETTINGS | 20 OPERATION_MAX = SETTINGS |
21 }; | 21 }; |
22 | 22 |
23 // Possible kinds of notifications | |
24 enum Type { PERSISTENT = 0, NONPERSISTENT = 1, TYPE_MAX = NONPERSISTENT }; | |
Peter Beverloo
2016/07/05 14:25:34
nit: NONPERSISTENT -> NON_PERSISTENT
Peter Beverloo
2016/07/05 14:25:34
Please place each type on their own line.
Miguel Garcia
2016/07/05 17:12:52
This is super annoying. clank format decides to ch
| |
25 | |
23 // Open the Notification settings screen when clicking the right button. | 26 // Open the Notification settings screen when clicking the right button. |
24 // TODO(miguelg) have it take a Profile instead once NotificationObjectProxy | 27 // TODO(miguelg) have it take a Profile instead once NotificationObjectProxy |
25 // is updated. | 28 // is updated. |
26 static void OpenNotificationSettings( | 29 static void OpenNotificationSettings( |
27 content::BrowserContext* browser_context); | 30 content::BrowserContext* browser_context); |
28 }; | 31 }; |
29 | 32 |
30 #endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_COMMON_H_ | 33 #endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_COMMON_H_ |
OLD | NEW |