diff options
Diffstat (limited to 'chrome/installer/util')
-rwxr-xr-x | chrome/installer/util/prebuild/create_string_rc.py | 1 | ||||
-rw-r--r-- | chrome/installer/util/util_constants.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/chrome/installer/util/prebuild/create_string_rc.py b/chrome/installer/util/prebuild/create_string_rc.py index 59ef430..bb4e5a0 100755 --- a/chrome/installer/util/prebuild/create_string_rc.py +++ b/chrome/installer/util/prebuild/create_string_rc.py @@ -50,6 +50,7 @@ kStringIds = [ 'IDS_INSTALL_INVALID_ARCHIVE', 'IDS_INSTALL_INSUFFICIENT_RIGHTS', 'IDS_UNINSTALL_FAILED', + 'IDS_INSTALL_DIR_IN_USE', ] # The ID of the first resource string. diff --git a/chrome/installer/util/util_constants.h b/chrome/installer/util/util_constants.h index aa2b27f..049fdac 100644 --- a/chrome/installer/util/util_constants.h +++ b/chrome/installer/util/util_constants.h @@ -36,7 +36,8 @@ enum InstallStatus { RENAME_FAILED, // Rename of new_chrome.exe failed EULA_REJECTED, // EULA dialog was not accepted by user. EULA_ACCEPTED, // EULA dialog was accepted by user. - EULA_ACCEPTED_OPT_IN // EULA accepted wtih the crash optin selected. + EULA_ACCEPTED_OPT_IN, // EULA accepted wtih the crash optin selected. + INSTALL_DIR_IN_USE // Installation directory is in use by another process }; // These are distibution related install options specified through command |