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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 | 109 |
110 // The extension id of the HTerm dev app for ChromeOS. | 110 // The extension id of the HTerm dev app for ChromeOS. |
111 extern const char kHTermDevAppId[]; | 111 extern const char kHTermDevAppId[]; |
112 | 112 |
113 // The extension id of the Identity API UI application. | 113 // The extension id of the Identity API UI application. |
114 extern const char kIdentityApiUiAppId[]; | 114 extern const char kIdentityApiUiAppId[]; |
115 | 115 |
116 // The extension id of the Crosh component app for ChromeOS. | 116 // The extension id of the Crosh component app for ChromeOS. |
117 extern const char kCroshBuiltinAppId[]; | 117 extern const char kCroshBuiltinAppId[]; |
118 | 118 |
| 119 // The extension id of the hotword audio verification dialogue app. |
| 120 extern const char kHotwordAudioVerificationAppId[]; |
| 121 |
119 // The extension id of the hotword voice search trigger extension. | 122 // The extension id of the hotword voice search trigger extension. |
120 extern const char kHotwordExtensionId[]; | 123 extern const char kHotwordExtensionId[]; |
121 | 124 |
122 // The extension id of the PDF extension. | 125 // The extension id of the PDF extension. |
123 extern const char kPdfExtensionId[]; | 126 extern const char kPdfExtensionId[]; |
124 | 127 |
125 // The extension id of the Office Viewer component extension. | 128 // The extension id of the Office Viewer component extension. |
126 extern const char kQuickOfficeComponentExtensionId[]; | 129 extern const char kQuickOfficeComponentExtensionId[]; |
127 | 130 |
128 // The extension id of the Office Viewer extension on the internal webstore. | 131 // The extension id of the Office Viewer extension on the internal webstore. |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 LAUNCH_CONTAINER_PANEL, | 328 LAUNCH_CONTAINER_PANEL, |
326 LAUNCH_CONTAINER_TAB, | 329 LAUNCH_CONTAINER_TAB, |
327 // For platform apps, which don't actually have a container (they just get a | 330 // For platform apps, which don't actually have a container (they just get a |
328 // "onLaunched" event). | 331 // "onLaunched" event). |
329 LAUNCH_CONTAINER_NONE | 332 LAUNCH_CONTAINER_NONE |
330 }; | 333 }; |
331 | 334 |
332 } // namespace extensions | 335 } // namespace extensions |
333 | 336 |
334 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 337 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |