| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 extern const char kBluetoothOnAdapterStateChanged[]; | 77 extern const char kBluetoothOnAdapterStateChanged[]; |
| 78 extern const char kBluetoothOnConnection[]; | 78 extern const char kBluetoothOnConnection[]; |
| 79 extern const char kBluetoothOnDeviceDiscovered[]; | 79 extern const char kBluetoothOnDeviceDiscovered[]; |
| 80 extern const char kBluetoothOnDeviceSearchFinished[]; | 80 extern const char kBluetoothOnDeviceSearchFinished[]; |
| 81 extern const char kBluetoothOnDeviceSearchResult[]; | 81 extern const char kBluetoothOnDeviceSearchResult[]; |
| 82 | 82 |
| 83 // Push messaging. | 83 // Push messaging. |
| 84 extern const char kOnPushMessage[]; | 84 extern const char kOnPushMessage[]; |
| 85 | 85 |
| 86 // systemInfo event names. | 86 // systemInfo event names. |
| 87 extern const char kOnCpuUpdated[]; | |
| 88 extern const char kOnDisplayChanged[]; | 87 extern const char kOnDisplayChanged[]; |
| 89 extern const char kOnStorageAvailableCapacityChanged[]; | 88 extern const char kOnStorageAvailableCapacityChanged[]; |
| 90 extern const char kOnStorageAttached[]; | 89 extern const char kOnStorageAttached[]; |
| 91 extern const char kOnStorageDetached[]; | 90 extern const char kOnStorageDetached[]; |
| 92 | 91 |
| 93 // System Indicator icon. | 92 // System Indicator icon. |
| 94 extern const char kOnSystemIndicatorClicked[]; | 93 extern const char kOnSystemIndicatorClicked[]; |
| 95 | 94 |
| 96 // SyncFileSystem. | 95 // SyncFileSystem. |
| 97 extern const char kOnServiceStatusChanged[]; | 96 extern const char kOnServiceStatusChanged[]; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 118 | 117 |
| 119 // Runtime. | 118 // Runtime. |
| 120 extern const char kOnLaunched[]; | 119 extern const char kOnLaunched[]; |
| 121 extern const char kOnRestarted[]; | 120 extern const char kOnRestarted[]; |
| 122 | 121 |
| 123 } // namespace event_names | 122 } // namespace event_names |
| 124 | 123 |
| 125 } // namespace extensions | 124 } // namespace extensions |
| 126 | 125 |
| 127 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ | 126 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ |
| OLD | NEW |