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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 | 69 |
70 // The extension id of the Identity API UI application. | 70 // The extension id of the Identity API UI application. |
71 extern const char kIdentityApiUiAppId[]; | 71 extern const char kIdentityApiUiAppId[]; |
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. | |
80 extern const char kHotwordExtensionId[]; | |
81 | |
82 // The extension id of the new (experimental) hotword extension. | 79 // The extension id of the new (experimental) hotword extension. |
83 extern const char kHotwordNewExtensionId[]; | 80 extern const char kHotwordNewExtensionId[]; |
84 | 81 |
85 // The extension id of the hotword shared module. | 82 // The extension id of the hotword shared module. |
86 extern const char kHotwordSharedModuleId[]; | 83 extern const char kHotwordSharedModuleId[]; |
87 | 84 |
88 // The extension id of the settings application. | 85 // The extension id of the settings application. |
89 extern const char kSettingsAppId[]; | 86 extern const char kSettingsAppId[]; |
90 | 87 |
91 // The extension id of the Youtube application. | 88 // The extension id of the Youtube application. |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 // The path part of the file system url used for media file systems. | 232 // The path part of the file system url used for media file systems. |
236 extern const char kMediaFileSystemPathPart[]; | 233 extern const char kMediaFileSystemPathPart[]; |
237 | 234 |
238 // The key used for signing some pieces of data from the webstore. | 235 // The key used for signing some pieces of data from the webstore. |
239 extern const uint8 kWebstoreSignaturesPublicKey[]; | 236 extern const uint8 kWebstoreSignaturesPublicKey[]; |
240 extern const int kWebstoreSignaturesPublicKeySize; | 237 extern const int kWebstoreSignaturesPublicKeySize; |
241 | 238 |
242 } // namespace extension_misc | 239 } // namespace extension_misc |
243 | 240 |
244 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 241 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |