diff options
author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-25 22:09:50 +0000 |
---|---|---|
committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-25 22:09:50 +0000 |
commit | ceb47118d6c222d6b90f52dcbf9a77d38faf65eb (patch) | |
tree | f70fa378e121e4f355b634fdb25e5bc319775309 /chrome/installer | |
parent | 6217d397bf501ec1ec5b7270d493006badd4d87a (diff) | |
download | chromium_src-ceb47118d6c222d6b90f52dcbf9a77d38faf65eb.zip chromium_src-ceb47118d6c222d6b90f52dcbf9a77d38faf65eb.tar.gz chromium_src-ceb47118d6c222d6b90f52dcbf9a77d38faf65eb.tar.bz2 |
Revert 42570 - 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
TBR=cpu@chromium.org
Review URL: http://codereview.chromium.org/1362002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42680 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r-- | chrome/installer/util/util_constants.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/installer/util/util_constants.h b/chrome/installer/util/util_constants.h index 07dd27e..1b8207e 100644 --- a/chrome/installer/util/util_constants.h +++ b/chrome/installer/util/util_constants.h @@ -10,13 +10,12 @@ namespace installer_util { -// 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. +// Return status of installer 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 @@ -45,7 +44,6 @@ 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. |