summaryrefslogtreecommitdiffstats
path: root/chrome/installer
diff options
context:
space:
mode:
authorcpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 01:45:05 +0000
committercpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 01:45:05 +0000
commite3e096e7fefce35a0509e2f788569127e0be8676 (patch)
treef1b6fd7d01d57dca887a767992927273faea97da /chrome/installer
parent687c5ac1a02ba5b75150713ac3c70cf5875d6273 (diff)
downloadchromium_src-e3e096e7fefce35a0509e2f788569127e0be8676.zip
chromium_src-e3e096e7fefce35a0509e2f788569127e0be8676.tar.gz
chromium_src-e3e096e7fefce35a0509e2f788569127e0be8676.tar.bz2
Move the installer result enum to the bottom
- it appears that some rely on these numbers, like the help center, sigh BUG=38927 TEST=none TBR=mal Review URL: http://codereview.chromium.org/1323002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42570 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r--chrome/installer/util/util_constants.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/installer/util/util_constants.h b/chrome/installer/util/util_constants.h
index 1b8207e..07dd27e 100644
--- a/chrome/installer/util/util_constants.h
+++ b/chrome/installer/util/util_constants.h
@@ -10,12 +10,13 @@
namespace installer_util {
-// Return status of installer
+// Return status of installer. DO NOT CHANGE the order of this enum
+// the help center people use them to direct user queries. You can
+// add to the bottom.
enum InstallStatus {
FIRST_INSTALL_SUCCESS, // Successfully installed Chrome for the first time
INSTALL_REPAIRED, // Same version reinstalled for repair
NEW_VERSION_UPDATED, // Chrome successfully updated to new version
- EXISTING_VERSION_LAUNCHED, // No work done, just launched existing chrome
HIGHER_VERSION_EXISTS, // Higher version of Chrome already exists
USER_LEVEL_INSTALL_EXISTS, // User level install already exists
SYSTEM_LEVEL_INSTALL_EXISTS, // Machine level install already exists
@@ -44,6 +45,7 @@ enum InstallStatus {
UNINSTALL_REQUIRES_REBOOT, // Uninstallation required a reboot.
IN_USE_UPDATED, // Chrome successfully updated but old version running
SAME_VERSION_REPAIR_FAILED, // Chrome repair failed as Chrome was running
+ EXISTING_VERSION_LAUNCHED, // No work done, just launched existing chrome
REENTRY_SYS_UPDATE, // Setup has been re-lauched as the interactive user
SXS_OPTION_NOT_SUPPORTED // The chrome-sxs option provided does not work
// with other command line options.