OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Constants for the event names sent to extensions. | 5 // Constants for the event names sent to extensions. |
6 | 6 |
7 #ifndef CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ | 7 #ifndef CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ |
8 #define CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ | 8 #define CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ |
9 | 9 |
10 namespace extensions { | 10 namespace extensions { |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 extern const char kOnGalleryChangedEventName[]; | 100 extern const char kOnGalleryChangedEventName[]; |
101 | 101 |
102 // Notifications. | 102 // Notifications. |
103 extern const char kOnNotificationDisplayed[]; | 103 extern const char kOnNotificationDisplayed[]; |
104 extern const char kOnNotificationError[]; | 104 extern const char kOnNotificationError[]; |
105 extern const char kOnNotificationClosed[]; | 105 extern const char kOnNotificationClosed[]; |
106 extern const char kOnNotificationClicked[]; | 106 extern const char kOnNotificationClicked[]; |
107 extern const char kOnNotificationButtonClicked[]; | 107 extern const char kOnNotificationButtonClicked[]; |
108 | 108 |
109 // NetworkingPrivate | 109 // NetworkingPrivate |
110 extern const char kOnNetworkChanged[]; | 110 extern const char kOnNetworksChanged[]; |
| 111 extern const char kOnNetworkListChanged[]; |
111 | 112 |
112 } // namespace event_names | 113 } // namespace event_names |
113 | 114 |
114 } // namespace extensions | 115 } // namespace extensions |
115 | 116 |
116 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ | 117 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ |
OLD | NEW |