| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 extern const char kConnectivityDiagnosticsKioskPath[]; | 223 extern const char kConnectivityDiagnosticsKioskPath[]; |
| 224 extern const char kConnectivityDiagnosticsLauncherPath[]; | 224 extern const char kConnectivityDiagnosticsLauncherPath[]; |
| 225 // Path to preinstalled speech synthesis extension. | 225 // Path to preinstalled speech synthesis extension. |
| 226 extern const char kSpeechSynthesisExtensionPath[]; | 226 extern const char kSpeechSynthesisExtensionPath[]; |
| 227 // The extension id of the speech synthesis extension. | 227 // The extension id of the speech synthesis extension. |
| 228 extern const char kSpeechSynthesisExtensionId[]; | 228 extern const char kSpeechSynthesisExtensionId[]; |
| 229 // The extension id of the wallpaper manager application. | 229 // The extension id of the wallpaper manager application. |
| 230 extern const char kWallpaperManagerId[]; | 230 extern const char kWallpaperManagerId[]; |
| 231 // The extension id of the first run dialog application. | 231 // The extension id of the first run dialog application. |
| 232 extern const char kFirstRunDialogId[]; | 232 extern const char kFirstRunDialogId[]; |
| 233 // The extension id of the new ZIP unpacker extension. |
| 234 extern const char kZIPUnpackerExtensionId[]; |
| 233 #endif | 235 #endif |
| 234 | 236 |
| 235 // What causes an extension to be installed? Used in histograms, so don't | 237 // What causes an extension to be installed? Used in histograms, so don't |
| 236 // change existing values. | 238 // change existing values. |
| 237 enum CrxInstallCause { | 239 enum CrxInstallCause { |
| 238 INSTALL_CAUSE_UNSET = 0, | 240 INSTALL_CAUSE_UNSET = 0, |
| 239 INSTALL_CAUSE_USER_DOWNLOAD, | 241 INSTALL_CAUSE_USER_DOWNLOAD, |
| 240 INSTALL_CAUSE_UPDATE, | 242 INSTALL_CAUSE_UPDATE, |
| 241 INSTALL_CAUSE_EXTERNAL_FILE, | 243 INSTALL_CAUSE_EXTERNAL_FILE, |
| 242 INSTALL_CAUSE_AUTOMATION, | 244 INSTALL_CAUSE_AUTOMATION, |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 LAUNCH_CONTAINER_PANEL, | 291 LAUNCH_CONTAINER_PANEL, |
| 290 LAUNCH_CONTAINER_TAB, | 292 LAUNCH_CONTAINER_TAB, |
| 291 // For platform apps, which don't actually have a container (they just get a | 293 // For platform apps, which don't actually have a container (they just get a |
| 292 // "onLaunched" event). | 294 // "onLaunched" event). |
| 293 LAUNCH_CONTAINER_NONE | 295 LAUNCH_CONTAINER_NONE |
| 294 }; | 296 }; |
| 295 | 297 |
| 296 } // namespace extensions | 298 } // namespace extensions |
| 297 | 299 |
| 298 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 300 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |