| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 // Path to preinstalled ChromeVox screen reader extension (relative to | 250 // Path to preinstalled ChromeVox screen reader extension (relative to |
| 251 // |chrome::DIR_RESOURCES|). | 251 // |chrome::DIR_RESOURCES|). |
| 252 extern const char kChromeVoxExtensionPath[]; | 252 extern const char kChromeVoxExtensionPath[]; |
| 253 // Path to preinstalled Connectivity Diagnostics extension. | 253 // Path to preinstalled Connectivity Diagnostics extension. |
| 254 extern const char kConnectivityDiagnosticsPath[]; | 254 extern const char kConnectivityDiagnosticsPath[]; |
| 255 extern const char kConnectivityDiagnosticsLauncherPath[]; | 255 extern const char kConnectivityDiagnosticsLauncherPath[]; |
| 256 // Path to preinstalled speech synthesis extension. | 256 // Path to preinstalled speech synthesis extension. |
| 257 extern const char kSpeechSynthesisExtensionPath[]; | 257 extern const char kSpeechSynthesisExtensionPath[]; |
| 258 // The extension id of the speech synthesis extension. | 258 // The extension id of the speech synthesis extension. |
| 259 extern const char kSpeechSynthesisExtensionId[]; | 259 extern const char kSpeechSynthesisExtensionId[]; |
| 260 // The extension id of the high quality speech synthesis extension for | |
| 261 // en-US, which can be installed automatically from the web store. | |
| 262 extern const char kHighQuality_en_US_ExtensionId[]; | |
| 263 // The extension id of the wallpaper manager application. | 260 // The extension id of the wallpaper manager application. |
| 264 extern const char kWallpaperManagerId[]; | 261 extern const char kWallpaperManagerId[]; |
| 265 // The extension id of the first run dialog application. | 262 // The extension id of the first run dialog application. |
| 266 extern const char kFirstRunDialogId[]; | 263 extern const char kFirstRunDialogId[]; |
| 267 #endif | 264 #endif |
| 268 | 265 |
| 269 // What causes an extension to be installed? Used in histograms, so don't | 266 // What causes an extension to be installed? Used in histograms, so don't |
| 270 // change existing values. | 267 // change existing values. |
| 271 enum CrxInstallCause { | 268 enum CrxInstallCause { |
| 272 INSTALL_CAUSE_UNSET = 0, | 269 INSTALL_CAUSE_UNSET = 0, |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 LAUNCH_CONTAINER_WINDOW, | 336 LAUNCH_CONTAINER_WINDOW, |
| 340 LAUNCH_CONTAINER_PANEL, | 337 LAUNCH_CONTAINER_PANEL, |
| 341 LAUNCH_CONTAINER_TAB, | 338 LAUNCH_CONTAINER_TAB, |
| 342 // For platform apps, which don't actually have a container (they just get a | 339 // For platform apps, which don't actually have a container (they just get a |
| 343 // "onLaunched" event). | 340 // "onLaunched" event). |
| 344 LAUNCH_CONTAINER_NONE | 341 LAUNCH_CONTAINER_NONE |
| 345 }; | 342 }; |
| 346 } // namespace extensions | 343 } // namespace extensions |
| 347 | 344 |
| 348 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 345 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |