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

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

Issue 197403004: Exit the installer gracefully if the processor doesn't support SSE2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: oops Created 6 years, 9 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_util.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 dffd88cf846407ed62f1a47b3f80ee890390f324..d8ab60a0bd02525fe84422011d44d044c2a45097 100644
--- a/chrome/installer/util/util_constants.h
+++ b/chrome/installer/util/util_constants.h
@@ -89,12 +89,13 @@ enum InstallStatus {
// in use.
UNUSED_BINARIES_UNINSTALLED, // 52. The binaries were uninstalled.
UNSUPPORTED_OPTION, // 53. An unsupported legacy option was given.
+ CPU_NOT_SUPPORTED, // 54. Current OS not supported
// Friendly reminder: note the COMPILE_ASSERT below.
};
// Existing InstallStatus values must not change. Always add to the end.
-COMPILE_ASSERT(installer::UNSUPPORTED_OPTION == 53,
+COMPILE_ASSERT(installer::CPU_NOT_SUPPORTED == 54,
dont_change_enum);
// The type of an update archive.
« no previous file with comments | « chrome/installer/setup/setup_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698