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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 | 111 |
112 // The extension id of the hotword voice search trigger extension. | 112 // The extension id of the hotword voice search trigger extension. |
113 extern const char kHotwordExtensionId[]; | 113 extern const char kHotwordExtensionId[]; |
114 | 114 |
115 // The extension id of the PDF extension. | 115 // The extension id of the PDF extension. |
116 extern const char kPdfExtensionId[]; | 116 extern const char kPdfExtensionId[]; |
117 | 117 |
118 // The extension id of the Office Viewer component extension. | 118 // The extension id of the Office Viewer component extension. |
119 extern const char kQuickOfficeComponentExtensionId[]; | 119 extern const char kQuickOfficeComponentExtensionId[]; |
120 | 120 |
121 // The extension id of the Office Viewer dev extension. | 121 // The extension id of the Office Viewer extension on the internal webstore. |
122 extern const char kQuickOfficeDevExtensionId[]; | 122 extern const char kQuickOfficeInternalExtensionId[]; |
123 | 123 |
124 // The extension id of the Office Viewer extension. | 124 // The extension id of the Office Viewer extension. |
125 extern const char kQuickOfficeExtensionId[]; | 125 extern const char kQuickOfficeExtensionId[]; |
126 | 126 |
127 // The extension id of the settings application. | 127 // The extension id of the settings application. |
128 extern const char kSettingsAppId[]; | 128 extern const char kSettingsAppId[]; |
129 | 129 |
130 // The extension id used for testing streamsPrivate | 130 // The extension id used for testing streamsPrivate |
131 extern const char kStreamsPrivateTestExtensionId[]; | 131 extern const char kStreamsPrivateTestExtensionId[]; |
132 | 132 |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 LAUNCH_CONTAINER_WINDOW, | 336 LAUNCH_CONTAINER_WINDOW, |
337 LAUNCH_CONTAINER_PANEL, | 337 LAUNCH_CONTAINER_PANEL, |
338 LAUNCH_CONTAINER_TAB, | 338 LAUNCH_CONTAINER_TAB, |
339 // For platform apps, which don't actually have a container (they just get a | 339 // For platform apps, which don't actually have a container (they just get a |
340 // "onLaunched" event). | 340 // "onLaunched" event). |
341 LAUNCH_CONTAINER_NONE | 341 LAUNCH_CONTAINER_NONE |
342 }; | 342 }; |
343 } // namespace extensions | 343 } // namespace extensions |
344 | 344 |
345 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 345 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |