| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 extern const char kOnContextMenuClicked[]; | 52 extern const char kOnContextMenuClicked[]; |
| 53 | 53 |
| 54 // DIAL. | 54 // DIAL. |
| 55 extern const char kOnDialDeviceList[]; | 55 extern const char kOnDialDeviceList[]; |
| 56 extern const char kOnDialError[]; | 56 extern const char kOnDialError[]; |
| 57 | 57 |
| 58 // Downloads. | 58 // Downloads. |
| 59 extern const char kOnDownloadCreated[]; | 59 extern const char kOnDownloadCreated[]; |
| 60 extern const char kOnDownloadChanged[]; | 60 extern const char kOnDownloadChanged[]; |
| 61 extern const char kOnDownloadErased[]; | 61 extern const char kOnDownloadErased[]; |
| 62 extern const char kOnDownloadDeterminingFilename[]; |
| 62 | 63 |
| 63 // Settings. | 64 // Settings. |
| 64 extern const char kOnSettingsChanged[]; | 65 extern const char kOnSettingsChanged[]; |
| 65 | 66 |
| 66 // TerminalPrivate. | 67 // TerminalPrivate. |
| 67 extern const char kOnTerminalProcessOutput[]; | 68 extern const char kOnTerminalProcessOutput[]; |
| 68 | 69 |
| 69 // OffscreenTabs. | 70 // OffscreenTabs. |
| 70 extern const char kOnOffscreenTabUpdated[]; | 71 extern const char kOnOffscreenTabUpdated[]; |
| 71 | 72 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 | 110 |
| 110 // NetworkingPrivate | 111 // NetworkingPrivate |
| 111 extern const char kOnNetworksChanged[]; | 112 extern const char kOnNetworksChanged[]; |
| 112 extern const char kOnNetworkListChanged[]; | 113 extern const char kOnNetworkListChanged[]; |
| 113 | 114 |
| 114 } // namespace event_names | 115 } // namespace event_names |
| 115 | 116 |
| 116 } // namespace extensions | 117 } // namespace extensions |
| 117 | 118 |
| 118 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ | 119 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ |
| OLD | NEW |