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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 APP_LAUNCH_BUCKET_INVALID | 191 APP_LAUNCH_BUCKET_INVALID |
192 }; | 192 }; |
193 | 193 |
194 // The extension id of the ChromeVox extension. | 194 // The extension id of the ChromeVox extension. |
195 extern const char kChromeVoxExtensionId[]; | 195 extern const char kChromeVoxExtensionId[]; |
196 | 196 |
197 #if defined(OS_CHROMEOS) | 197 #if defined(OS_CHROMEOS) |
198 // Path to preinstalled ChromeVox screen reader extension (relative to | 198 // Path to preinstalled ChromeVox screen reader extension (relative to |
199 // |chrome::DIR_RESOURCES|). | 199 // |chrome::DIR_RESOURCES|). |
200 extern const char kChromeVoxExtensionPath[]; | 200 extern const char kChromeVoxExtensionPath[]; |
| 201 // The extension id of the Select-to-speak extension. |
| 202 extern const char kSelectToSpeakExtensionId[]; |
| 203 // Path to preinstalled Select-to-speak extension (relative to |
| 204 // |chrome::DIR_RESOURCES|). |
| 205 extern const char kSelectToSpeakExtensionPath[]; |
201 // Name of the manifest file in an extension when a special manifest is used | 206 // Name of the manifest file in an extension when a special manifest is used |
202 // for guest mode. | 207 // for guest mode. |
203 extern const char kGuestManifestFilename[]; | 208 extern const char kGuestManifestFilename[]; |
204 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine | 209 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine |
205 // id for the builtin-in Braille IME extension. | 210 // id for the builtin-in Braille IME extension. |
206 extern const char kBrailleImeExtensionId[]; | 211 extern const char kBrailleImeExtensionId[]; |
207 extern const char kBrailleImeExtensionPath[]; | 212 extern const char kBrailleImeExtensionPath[]; |
208 extern const char kBrailleImeEngineId[]; | 213 extern const char kBrailleImeEngineId[]; |
209 // Path to preinstalled Connectivity Diagnostics extension. | 214 // Path to preinstalled Connectivity Diagnostics extension. |
210 extern const char kConnectivityDiagnosticsPath[]; | 215 extern const char kConnectivityDiagnosticsPath[]; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 extern const int kWebstoreSignaturesPublicKeySize; | 256 extern const int kWebstoreSignaturesPublicKeySize; |
252 | 257 |
253 #if defined(OS_CHROMEOS) | 258 #if defined(OS_CHROMEOS) |
254 // Returns true if |extension_id| is one of the IME extensions that will create | 259 // Returns true if |extension_id| is one of the IME extensions that will create |
255 // IME menu. | 260 // IME menu. |
256 bool IsImeMenuExtensionId(const std::string& extension_id); | 261 bool IsImeMenuExtensionId(const std::string& extension_id); |
257 #endif | 262 #endif |
258 } // namespace extension_misc | 263 } // namespace extension_misc |
259 | 264 |
260 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 265 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |