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

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

Issue 1884663002: Bump the min-supported OS version in the installer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/app/google_chrome_strings.grd ('k') | chrome/installer/util/install_util.cc » ('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 7a4022c43508bb59eb7bc59eb7b76f5069ccb4cf..085fe65699bc5b120d80664d07e693d6960833c2 100644
--- a/chrome/installer/setup/setup_main.cc
+++ b/chrome/installer/setup/setup_main.cc
@@ -1733,10 +1733,10 @@ int WINAPI wWinMain(HINSTANCE instance, HINSTANCE prev_instance,
const bool is_uninstall = cmd_line.HasSwitch(installer::switches::kUninstall);
- // Check to make sure current system is WinXP or later. If not, log
+ // Check to make sure current system is Win7 or later. If not, log
// error message and get out.
if (!InstallUtil::IsOSSupported()) {
- LOG(ERROR) << "Chrome only supports Windows XP or later.";
+ LOG(ERROR) << "Chrome only supports Windows 7 or later.";
scottmg 2016/04/12 17:32:39 Does setup still launch on XP even?
grt (UTC plus 2) 2016/04/12 17:58:23 Just tried with 50.0.2661.74, and it succeeded in
installer_state.WriteInstallerResult(
installer::OS_NOT_SUPPORTED, IDS_INSTALL_OS_NOT_SUPPORTED_BASE, NULL);
return installer::OS_NOT_SUPPORTED;
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | chrome/installer/util/install_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698