| 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 kOnContextMenus[]; | 52 extern const char kOnContextMenus[]; |
| 53 extern const char kOnContextMenuClicked[]; | 53 extern const char kOnContextMenuClicked[]; |
| 54 | 54 |
| 55 // DIAL. | 55 // DIAL. |
| 56 extern const char kOnDialDeviceList[]; | 56 extern const char kOnDialDeviceList[]; |
| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 extern const char kOnNotificationError[]; | 105 extern const char kOnNotificationError[]; |
| 105 extern const char kOnNotificationClosed[]; | 106 extern const char kOnNotificationClosed[]; |
| 106 extern const char kOnNotificationClicked[]; | 107 extern const char kOnNotificationClicked[]; |
| 107 extern const char kOnNotificationButtonClicked[]; | 108 extern const char kOnNotificationButtonClicked[]; |
| 108 | 109 |
| 109 } // namespace event_names | 110 } // namespace event_names |
| 110 | 111 |
| 111 } // namespace extensions | 112 } // namespace extensions |
| 112 | 113 |
| 113 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ | 114 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_ |
| OLD | NEW |