| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 new (experimental) hotword extension. | 82 // The extension id of the new (experimental) hotword extension. |
| 83 extern const char kHotwordNewExtensionId[]; | 83 extern const char kHotwordNewExtensionId[]; |
| 84 | 84 |
| 85 // The extension id of the hotword shared module. | 85 // The extension id of the hotword shared module. |
| 86 extern const char kHotwordSharedModuleId[]; | 86 extern const char kHotwordSharedModuleId[]; |
| 87 | 87 |
| 88 // The extension id of the PDF extension. | |
| 89 extern const char kPdfExtensionId[]; | |
| 90 | |
| 91 // The extension id of the Office Viewer component extension. | |
| 92 extern const char kQuickOfficeComponentExtensionId[]; | |
| 93 | |
| 94 // The extension id of the Office Viewer extension on the internal webstore. | |
| 95 extern const char kQuickOfficeInternalExtensionId[]; | |
| 96 | |
| 97 // The extension id of the Office Viewer extension. | |
| 98 extern const char kQuickOfficeExtensionId[]; | |
| 99 | |
| 100 // The extension id of the settings application. | 88 // The extension id of the settings application. |
| 101 extern const char kSettingsAppId[]; | 89 extern const char kSettingsAppId[]; |
| 102 | 90 |
| 103 // The extension id used for testing streamsPrivate | |
| 104 extern const char kStreamsPrivateTestExtensionId[]; | |
| 105 | |
| 106 // The extension id of the Youtube application. | 91 // The extension id of the Youtube application. |
| 107 extern const char kYoutubeAppId[]; | 92 extern const char kYoutubeAppId[]; |
| 108 | 93 |
| 109 // The extension id of the in-app payments support application. | 94 // The extension id of the in-app payments support application. |
| 110 extern const char kInAppPaymentsSupportAppId[]; | 95 extern const char kInAppPaymentsSupportAppId[]; |
| 111 | 96 |
| 112 // The buckets used for app launches. | 97 // The buckets used for app launches. |
| 113 enum AppLaunchBucket { | 98 enum AppLaunchBucket { |
| 114 // Launch from NTP apps section while maximized. | 99 // Launch from NTP apps section while maximized. |
| 115 APP_LAUNCH_NTP_APPS_MAXIMIZED, | 100 APP_LAUNCH_NTP_APPS_MAXIMIZED, |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 // The path part of the file system url used for media file systems. | 235 // The path part of the file system url used for media file systems. |
| 251 extern const char kMediaFileSystemPathPart[]; | 236 extern const char kMediaFileSystemPathPart[]; |
| 252 | 237 |
| 253 // The key used for signing some pieces of data from the webstore. | 238 // The key used for signing some pieces of data from the webstore. |
| 254 extern const uint8 kWebstoreSignaturesPublicKey[]; | 239 extern const uint8 kWebstoreSignaturesPublicKey[]; |
| 255 extern const int kWebstoreSignaturesPublicKeySize; | 240 extern const int kWebstoreSignaturesPublicKeySize; |
| 256 | 241 |
| 257 } // namespace extension_misc | 242 } // namespace extension_misc |
| 258 | 243 |
| 259 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 244 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |