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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 APP_LAUNCH_BUCKET_INVALID | 238 APP_LAUNCH_BUCKET_INVALID |
239 }; | 239 }; |
240 | 240 |
241 // The extension id of the ChromeVox extension. | 241 // The extension id of the ChromeVox extension. |
242 extern const char kChromeVoxExtensionId[]; | 242 extern const char kChromeVoxExtensionId[]; |
243 | 243 |
244 #if defined(OS_CHROMEOS) | 244 #if defined(OS_CHROMEOS) |
245 // Path to preinstalled ChromeVox screen reader extension (relative to | 245 // Path to preinstalled ChromeVox screen reader extension (relative to |
246 // |chrome::DIR_RESOURCES|). | 246 // |chrome::DIR_RESOURCES|). |
247 extern const char kChromeVoxExtensionPath[]; | 247 extern const char kChromeVoxExtensionPath[]; |
| 248 // Name of ChromeVox manifest file. |
| 249 extern const char kChromeVoxManifestFilename[]; |
| 250 // Name of ChromeVox guest manifest file. |
| 251 extern const char kChromeVoxGuestManifestFilename[]; |
248 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine | 252 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine |
249 // id for the builtin-in Braille IME extension. | 253 // id for the builtin-in Braille IME extension. |
250 extern const char kBrailleImeExtensionId[]; | 254 extern const char kBrailleImeExtensionId[]; |
251 extern const char kBrailleImeExtensionPath[]; | 255 extern const char kBrailleImeExtensionPath[]; |
252 extern const char kBrailleImeEngineId[]; | 256 extern const char kBrailleImeEngineId[]; |
253 // Path to preinstalled Connectivity Diagnostics extension. | 257 // Path to preinstalled Connectivity Diagnostics extension. |
254 extern const char kConnectivityDiagnosticsPath[]; | 258 extern const char kConnectivityDiagnosticsPath[]; |
255 extern const char kConnectivityDiagnosticsKioskPath[]; | 259 extern const char kConnectivityDiagnosticsKioskPath[]; |
256 extern const char kConnectivityDiagnosticsLauncherPath[]; | 260 extern const char kConnectivityDiagnosticsLauncherPath[]; |
257 // Path to preinstalled speech synthesis extension. | 261 // Path to preinstalled speech synthesis extension. |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 LAUNCH_CONTAINER_PANEL, | 325 LAUNCH_CONTAINER_PANEL, |
322 LAUNCH_CONTAINER_TAB, | 326 LAUNCH_CONTAINER_TAB, |
323 // For platform apps, which don't actually have a container (they just get a | 327 // For platform apps, which don't actually have a container (they just get a |
324 // "onLaunched" event). | 328 // "onLaunched" event). |
325 LAUNCH_CONTAINER_NONE | 329 LAUNCH_CONTAINER_NONE |
326 }; | 330 }; |
327 | 331 |
328 } // namespace extensions | 332 } // namespace extensions |
329 | 333 |
330 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 334 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |