| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 // The extension id of the hotword audio verification dialogue app. | 88 // The extension id of the hotword audio verification dialogue app. |
| 89 extern const char kHotwordAudioVerificationAppId[]; | 89 extern const char kHotwordAudioVerificationAppId[]; |
| 90 | 90 |
| 91 // The extension id of the new (experimental) hotword extension. | 91 // The extension id of the new (experimental) hotword extension. |
| 92 extern const char kHotwordNewExtensionId[]; | 92 extern const char kHotwordNewExtensionId[]; |
| 93 | 93 |
| 94 // The extension id of the hotword shared module. | 94 // The extension id of the hotword shared module. |
| 95 extern const char kHotwordSharedModuleId[]; | 95 extern const char kHotwordSharedModuleId[]; |
| 96 | 96 |
| 97 // The extension id of the settings application. | |
| 98 extern const char kSettingsAppId[]; | |
| 99 | |
| 100 // The extension id of the Youtube application. | 97 // The extension id of the Youtube application. |
| 101 extern const char kYoutubeAppId[]; | 98 extern const char kYoutubeAppId[]; |
| 102 | 99 |
| 103 // The extension id of the in-app payments support application. | 100 // The extension id of the in-app payments support application. |
| 104 extern const char kInAppPaymentsSupportAppId[]; | 101 extern const char kInAppPaymentsSupportAppId[]; |
| 105 | 102 |
| 106 #if defined(ENABLE_MEDIA_ROUTER) | 103 #if defined(ENABLE_MEDIA_ROUTER) |
| 107 // The extension id of the stable media router extension. | 104 // The extension id of the stable media router extension. |
| 108 extern const char kMediaRouterStableExtensionId[]; | 105 extern const char kMediaRouterStableExtensionId[]; |
| 109 #endif // defined(ENABLE_MEDIA_ROUTER) | 106 #endif // defined(ENABLE_MEDIA_ROUTER) |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 extern const int kWebstoreSignaturesPublicKeySize; | 251 extern const int kWebstoreSignaturesPublicKeySize; |
| 255 | 252 |
| 256 #if defined(OS_CHROMEOS) | 253 #if defined(OS_CHROMEOS) |
| 257 // Returns true if |extension_id| is one of the IME extensions that will create | 254 // Returns true if |extension_id| is one of the IME extensions that will create |
| 258 // IME menu. | 255 // IME menu. |
| 259 bool IsImeMenuExtensionId(const std::string& extension_id); | 256 bool IsImeMenuExtensionId(const std::string& extension_id); |
| 260 #endif | 257 #endif |
| 261 } // namespace extension_misc | 258 } // namespace extension_misc |
| 262 | 259 |
| 263 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 260 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |