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

Unified Diff: chrome/installer/util/util_constants.h

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 | « chrome/installer/setup/setup_main.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/util_constants.h
diff --git a/chrome/installer/util/util_constants.h b/chrome/installer/util/util_constants.h
index 09416e4a7e2f479854ee640ac8e0df10d1aff6aa..d2f648aa59b8eb3adfbc01a9c141773b13c9e287 100644
--- a/chrome/installer/util/util_constants.h
+++ b/chrome/installer/util/util_constants.h
@@ -92,13 +92,15 @@ enum InstallStatus {
CPU_NOT_SUPPORTED, // 54. Current OS not supported
REENABLE_UPDATES_SUCCEEDED, // 55. Autoupdates are now enabled.
REENABLE_UPDATES_FAILED, // 56. Autoupdates could not be enabled.
+ UNPACKING_FAILED, // 57. Unpacking the (possibly patched)
+ // uncompressed archive failed.
// Friendly reminder: note the COMPILE_ASSERT below.
};
// Existing InstallStatus values must not change. Always add to the end.
-COMPILE_ASSERT(installer::REENABLE_UPDATES_FAILED == 56,
+COMPILE_ASSERT(installer::UNPACKING_FAILED == 57,
dont_change_enum);
// The type of an update archive.
« no previous file with comments | « chrome/installer/setup/setup_main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698