| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 133 |
| 134 // The extension id of the Office Viewer extension. | 134 // The extension id of the Office Viewer extension. |
| 135 extern const char kQuickOfficeExtensionId[]; | 135 extern const char kQuickOfficeExtensionId[]; |
| 136 | 136 |
| 137 // The extension id of the settings application. | 137 // The extension id of the settings application. |
| 138 extern const char kSettingsAppId[]; | 138 extern const char kSettingsAppId[]; |
| 139 | 139 |
| 140 // The extension id used for testing streamsPrivate | 140 // The extension id used for testing streamsPrivate |
| 141 extern const char kStreamsPrivateTestExtensionId[]; | 141 extern const char kStreamsPrivateTestExtensionId[]; |
| 142 | 142 |
| 143 // The extension id of the Web Store component application. | |
| 144 extern const char kWebStoreAppId[]; | |
| 145 | |
| 146 // The extension id of the Youtube application. | 143 // The extension id of the Youtube application. |
| 147 extern const char kYoutubeAppId[]; | 144 extern const char kYoutubeAppId[]; |
| 148 | 145 |
| 149 // The extension id of the in-app payments support application. | 146 // The extension id of the in-app payments support application. |
| 150 extern const char kInAppPaymentsSupportAppId[]; | 147 extern const char kInAppPaymentsSupportAppId[]; |
| 151 | 148 |
| 152 // The name of the app launch histogram. | 149 // The name of the app launch histogram. |
| 153 extern const char kAppLaunchHistogram[]; | 150 extern const char kAppLaunchHistogram[]; |
| 154 | 151 |
| 155 // The name of the app launch histogram for platform apps. | 152 // The name of the app launch histogram for platform apps. |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 LAUNCH_CONTAINER_PANEL, | 325 LAUNCH_CONTAINER_PANEL, |
| 329 LAUNCH_CONTAINER_TAB, | 326 LAUNCH_CONTAINER_TAB, |
| 330 // For platform apps, which don't actually have a container (they just get a | 327 // For platform apps, which don't actually have a container (they just get a |
| 331 // "onLaunched" event). | 328 // "onLaunched" event). |
| 332 LAUNCH_CONTAINER_NONE | 329 LAUNCH_CONTAINER_NONE |
| 333 }; | 330 }; |
| 334 | 331 |
| 335 } // namespace extensions | 332 } // namespace extensions |
| 336 | 333 |
| 337 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 334 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |