Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2736)

Unified Diff: chrome/installer/setup/setup_main.cc

Issue 338273002: Split UNPACKING_FAILED exit code out from UNCOMPRESSION_FAILED. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/installer/util/util_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/setup/setup_main.cc
diff --git a/chrome/installer/setup/setup_main.cc b/chrome/installer/setup/setup_main.cc
index d6f91458800d7dc584cd502ad67c48c7cf10c981..c5b8c0fff2b0acdc3a410eabac01a41041afce23 100644
--- a/chrome/installer/setup/setup_main.cc
+++ b/chrome/installer/setup/setup_main.cc
@@ -1468,10 +1468,10 @@ InstallStatus InstallProductsHelper(
unpack_path.value(),
NULL)) {
installer_state.WriteInstallerResult(
- UNCOMPRESSION_FAILED,
+ UNPACKING_FAILED,
IDS_INSTALL_UNCOMPRESSION_FAILED_BASE,
NULL);
- return UNCOMPRESSION_FAILED;
+ return UNPACKING_FAILED;
}
VLOG(1) << "unpacked to " << unpack_path.value();
« no previous file with comments | « no previous file | chrome/installer/util/util_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698