| 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 extern const char kChromeVoxExtensionId[]; | 199 extern const char kChromeVoxExtensionId[]; |
| 200 | 200 |
| 201 #if defined(OS_CHROMEOS) | 201 #if defined(OS_CHROMEOS) |
| 202 // Path to preinstalled ChromeVox screen reader extension (relative to | 202 // Path to preinstalled ChromeVox screen reader extension (relative to |
| 203 // |chrome::DIR_RESOURCES|). | 203 // |chrome::DIR_RESOURCES|). |
| 204 extern const char kChromeVoxExtensionPath[]; | 204 extern const char kChromeVoxExtensionPath[]; |
| 205 // Name of ChromeVox manifest file. | 205 // Name of ChromeVox manifest file. |
| 206 extern const char kChromeVoxManifestFilename[]; | 206 extern const char kChromeVoxManifestFilename[]; |
| 207 // Name of ChromeVox guest manifest file. | 207 // Name of ChromeVox guest manifest file. |
| 208 extern const char kChromeVoxGuestManifestFilename[]; | 208 extern const char kChromeVoxGuestManifestFilename[]; |
| 209 // Name of ChromeVox next manifest file. |
| 210 extern const char kChromeVoxNextManifestFilename[]; |
| 211 // Name of ChromeVox next guest manifest file. |
| 212 extern const char kChromeVoxNextGuestManifestFilename[]; |
| 209 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine | 213 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine |
| 210 // id for the builtin-in Braille IME extension. | 214 // id for the builtin-in Braille IME extension. |
| 211 extern const char kBrailleImeExtensionId[]; | 215 extern const char kBrailleImeExtensionId[]; |
| 212 extern const char kBrailleImeExtensionPath[]; | 216 extern const char kBrailleImeExtensionPath[]; |
| 213 extern const char kBrailleImeEngineId[]; | 217 extern const char kBrailleImeEngineId[]; |
| 214 // Path to preinstalled Connectivity Diagnostics extension. | 218 // Path to preinstalled Connectivity Diagnostics extension. |
| 215 extern const char kConnectivityDiagnosticsPath[]; | 219 extern const char kConnectivityDiagnosticsPath[]; |
| 216 extern const char kConnectivityDiagnosticsKioskPath[]; | 220 extern const char kConnectivityDiagnosticsKioskPath[]; |
| 217 extern const char kConnectivityDiagnosticsLauncherPath[]; | 221 extern const char kConnectivityDiagnosticsLauncherPath[]; |
| 218 // Path to preinstalled speech synthesis extension. | 222 // Path to preinstalled speech synthesis extension. |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 LAUNCH_CONTAINER_PANEL, | 286 LAUNCH_CONTAINER_PANEL, |
| 283 LAUNCH_CONTAINER_TAB, | 287 LAUNCH_CONTAINER_TAB, |
| 284 // For platform apps, which don't actually have a container (they just get a | 288 // For platform apps, which don't actually have a container (they just get a |
| 285 // "onLaunched" event). | 289 // "onLaunched" event). |
| 286 LAUNCH_CONTAINER_NONE | 290 LAUNCH_CONTAINER_NONE |
| 287 }; | 291 }; |
| 288 | 292 |
| 289 } // namespace extensions | 293 } // namespace extensions |
| 290 | 294 |
| 291 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 295 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |