| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 #if defined(OS_CHROMEOS) | 246 #if defined(OS_CHROMEOS) |
| 247 // Path to preinstalled ChromeVox screen reader extension. | 247 // Path to preinstalled ChromeVox screen reader extension. |
| 248 extern const char kChromeVoxExtensionPath[]; | 248 extern const char kChromeVoxExtensionPath[]; |
| 249 // Path to preinstalled Connectivity Diagnostics extension. | 249 // Path to preinstalled Connectivity Diagnostics extension. |
| 250 extern const char kConnectivityDiagnosticsPath[]; | 250 extern const char kConnectivityDiagnosticsPath[]; |
| 251 extern const char kConnectivityDiagnosticsLauncherPath[]; | 251 extern const char kConnectivityDiagnosticsLauncherPath[]; |
| 252 // Path to preinstalled speech synthesis extension. | 252 // Path to preinstalled speech synthesis extension. |
| 253 extern const char kSpeechSynthesisExtensionPath[]; | 253 extern const char kSpeechSynthesisExtensionPath[]; |
| 254 // The extension id of the speech synthesis extension. | 254 // The extension id of the speech synthesis extension. |
| 255 extern const char kSpeechSynthesisExtensionId[]; | 255 extern const char kSpeechSynthesisExtensionId[]; |
| 256 // The extension id of the high quality speech synthesis extension for |
| 257 // en-US, which can be installed automatically from the web store. |
| 258 extern const char kHighQuality_en_US_ExtensionId[]; |
| 256 // The extension id of the wallpaper manager application. | 259 // The extension id of the wallpaper manager application. |
| 257 extern const char kWallpaperManagerId[]; | 260 extern const char kWallpaperManagerId[]; |
| 258 // The extension id of the first run dialog application. | 261 // The extension id of the first run dialog application. |
| 259 extern const char kFirstRunDialogId[]; | 262 extern const char kFirstRunDialogId[]; |
| 260 #endif | 263 #endif |
| 261 | 264 |
| 262 // What causes an extension to be installed? Used in histograms, so don't | 265 // What causes an extension to be installed? Used in histograms, so don't |
| 263 // change existing values. | 266 // change existing values. |
| 264 enum CrxInstallCause { | 267 enum CrxInstallCause { |
| 265 INSTALL_CAUSE_UNSET = 0, | 268 INSTALL_CAUSE_UNSET = 0, |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 // List of sizes for extension icons that can be defined in the manifest. | 306 // List of sizes for extension icons that can be defined in the manifest. |
| 304 extern const int kExtensionActionIconSizes[]; | 307 extern const int kExtensionActionIconSizes[]; |
| 305 extern const size_t kNumExtensionActionIconSizes; | 308 extern const size_t kNumExtensionActionIconSizes; |
| 306 | 309 |
| 307 // List of sizes for extension icons that can be defined in the manifest. | 310 // List of sizes for extension icons that can be defined in the manifest. |
| 308 extern const int kScriptBadgeIconSizes[]; | 311 extern const int kScriptBadgeIconSizes[]; |
| 309 extern const size_t kNumScriptBadgeIconSizes; | 312 extern const size_t kNumScriptBadgeIconSizes; |
| 310 } // namespace extension_misc | 313 } // namespace extension_misc |
| 311 | 314 |
| 312 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 315 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |