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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 | 72 |
73 // The extension id of the Crosh component app for ChromeOS. | 73 // The extension id of the Crosh component app for ChromeOS. |
74 extern const char kCroshBuiltinAppId[]; | 74 extern const char kCroshBuiltinAppId[]; |
75 | 75 |
76 // The extension id of the hotword audio verification dialogue app. | 76 // The extension id of the hotword audio verification dialogue app. |
77 extern const char kHotwordAudioVerificationAppId[]; | 77 extern const char kHotwordAudioVerificationAppId[]; |
78 | 78 |
79 // The extension id of the hotword voice search trigger extension. | 79 // The extension id of the hotword voice search trigger extension. |
80 extern const char kHotwordExtensionId[]; | 80 extern const char kHotwordExtensionId[]; |
81 | 81 |
| 82 // The extension id of the hotword shared module. |
| 83 extern const char kHotwordSharedModuleId[]; |
| 84 |
82 // The extension id of the PDF extension. | 85 // The extension id of the PDF extension. |
83 extern const char kPdfExtensionId[]; | 86 extern const char kPdfExtensionId[]; |
84 | 87 |
85 // The extension id of the Office Viewer component extension. | 88 // The extension id of the Office Viewer component extension. |
86 extern const char kQuickOfficeComponentExtensionId[]; | 89 extern const char kQuickOfficeComponentExtensionId[]; |
87 | 90 |
88 // The extension id of the Office Viewer extension on the internal webstore. | 91 // The extension id of the Office Viewer extension on the internal webstore. |
89 extern const char kQuickOfficeInternalExtensionId[]; | 92 extern const char kQuickOfficeInternalExtensionId[]; |
90 | 93 |
91 // The extension id of the Office Viewer extension. | 94 // The extension id of the Office Viewer extension. |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 LAUNCH_CONTAINER_PANEL, | 285 LAUNCH_CONTAINER_PANEL, |
283 LAUNCH_CONTAINER_TAB, | 286 LAUNCH_CONTAINER_TAB, |
284 // For platform apps, which don't actually have a container (they just get a | 287 // For platform apps, which don't actually have a container (they just get a |
285 // "onLaunched" event). | 288 // "onLaunched" event). |
286 LAUNCH_CONTAINER_NONE | 289 LAUNCH_CONTAINER_NONE |
287 }; | 290 }; |
288 | 291 |
289 } // namespace extensions | 292 } // namespace extensions |
290 | 293 |
291 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 294 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |