| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 extern const char kOnFileBrowserPreferencesChanged[]; | 44 extern const char kOnFileBrowserPreferencesChanged[]; |
| 45 extern const char kOnFileBrowserNetworkConnectionChanged[]; | 45 extern const char kOnFileBrowserNetworkConnectionChanged[]; |
| 46 | 46 |
| 47 // InputMethod. | 47 // InputMethod. |
| 48 extern const char kOnInputMethodChanged[]; | 48 extern const char kOnInputMethodChanged[]; |
| 49 | 49 |
| 50 // Context menus. | 50 // Context menus. |
| 51 extern const char kOnContextMenus[]; | 51 extern const char kOnContextMenus[]; |
| 52 extern const char kOnContextMenuClicked[]; | 52 extern const char kOnContextMenuClicked[]; |
| 53 | 53 |
| 54 // DIAL. |
| 55 extern const char kOnDialDeviceList[]; |
| 56 |
| 54 // Downloads. | 57 // Downloads. |
| 55 extern const char kOnDownloadCreated[]; | 58 extern const char kOnDownloadCreated[]; |
| 56 extern const char kOnDownloadChanged[]; | 59 extern const char kOnDownloadChanged[]; |
| 57 extern const char kOnDownloadErased[]; | 60 extern const char kOnDownloadErased[]; |
| 58 | 61 |
| 59 // Settings. | 62 // Settings. |
| 60 extern const char kOnSettingsChanged[]; | 63 extern const char kOnSettingsChanged[]; |
| 61 | 64 |
| 62 // TerminalPrivate. | 65 // TerminalPrivate. |
| 63 extern const char kOnTerminalProcessOutput[]; | 66 extern const char kOnTerminalProcessOutput[]; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 90 | 93 |
| 91 // SyncFileSystem. | 94 // SyncFileSystem. |
| 92 extern const char kOnSyncStateChanged[]; | 95 extern const char kOnSyncStateChanged[]; |
| 93 extern const char kOnFileSynced[]; | 96 extern const char kOnFileSynced[]; |
| 94 | 97 |
| 95 } // namespace event_names | 98 } // namespace event_names |
| 96 | 99 |
| 97 } // namespace extensions | 100 } // namespace extensions |
| 98 | 101 |
| 99 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ | 102 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ |
| OLD | NEW |