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. | 79 // The extension id of the old hotword voice search trigger extension. |
80 extern const char kHotwordExtensionId[]; | 80 extern const char kHotwordOldExtensionId[]; |
benwells
2015/03/20 02:47:06
Is this deliberately left in? Is it needed?
Anand Mistry (off Chromium)
2015/03/20 03:21:51
It's still used by HotwordService, but doesn't nee
| |
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 settings application. | 88 // The extension id of the settings application. |
89 extern const char kSettingsAppId[]; | 89 extern const char kSettingsAppId[]; |
90 | 90 |
(...skipping 144 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. | 235 // The path part of the file system url used for media file systems. |
236 extern const char kMediaFileSystemPathPart[]; | 236 extern const char kMediaFileSystemPathPart[]; |
237 | 237 |
238 // 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. |
239 extern const uint8 kWebstoreSignaturesPublicKey[]; | 239 extern const uint8 kWebstoreSignaturesPublicKey[]; |
240 extern const int kWebstoreSignaturesPublicKeySize; | 240 extern const int kWebstoreSignaturesPublicKeySize; |
241 | 241 |
242 } // namespace extension_misc | 242 } // namespace extension_misc |
243 | 243 |
244 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 244 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |