| 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 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 | 102 |
| 103 // The extension id of the HTerm app for ChromeOS. | 103 // The extension id of the HTerm app for ChromeOS. |
| 104 extern const char kHTermAppId[]; | 104 extern const char kHTermAppId[]; |
| 105 | 105 |
| 106 // The extension id of the HTerm dev app for ChromeOS. | 106 // The extension id of the HTerm dev app for ChromeOS. |
| 107 extern const char kHTermDevAppId[]; | 107 extern const char kHTermDevAppId[]; |
| 108 | 108 |
| 109 // The extension id of the Crosh component app for ChromeOS. | 109 // The extension id of the Crosh component app for ChromeOS. |
| 110 extern const char kCroshBuiltinAppId[]; | 110 extern const char kCroshBuiltinAppId[]; |
| 111 | 111 |
| 112 // The extension id of the hotword voice search trigger extension. |
| 113 extern const char kHotwordExtensionId[]; |
| 114 |
| 112 // The extension id of the PDF extension. | 115 // The extension id of the PDF extension. |
| 113 extern const char kPdfExtensionId[]; | 116 extern const char kPdfExtensionId[]; |
| 114 | 117 |
| 115 // The extension id of the Office Viewer component extension. | 118 // The extension id of the Office Viewer component extension. |
| 116 extern const char kQuickOfficeComponentExtensionId[]; | 119 extern const char kQuickOfficeComponentExtensionId[]; |
| 117 | 120 |
| 118 // The extension id of the Office Viewer dev extension. | 121 // The extension id of the Office Viewer dev extension. |
| 119 extern const char kQuickOfficeDevExtensionId[]; | 122 extern const char kQuickOfficeDevExtensionId[]; |
| 120 | 123 |
| 121 // The extension id of the Office Viewer extension. | 124 // The extension id of the Office Viewer extension. |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 LAUNCH_CONTAINER_WINDOW, | 342 LAUNCH_CONTAINER_WINDOW, |
| 340 LAUNCH_CONTAINER_PANEL, | 343 LAUNCH_CONTAINER_PANEL, |
| 341 LAUNCH_CONTAINER_TAB, | 344 LAUNCH_CONTAINER_TAB, |
| 342 // For platform apps, which don't actually have a container (they just get a | 345 // For platform apps, which don't actually have a container (they just get a |
| 343 // "onLaunched" event). | 346 // "onLaunched" event). |
| 344 LAUNCH_CONTAINER_NONE | 347 LAUNCH_CONTAINER_NONE |
| 345 }; | 348 }; |
| 346 } // namespace extensions | 349 } // namespace extensions |
| 347 | 350 |
| 348 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 351 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |