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

Unified Diff: chrome/browser/ui/webui/flash_ui.cc

Issue 10408084: Lump client and server versions of Windows together. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also do away with Server 2003 Created 8 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 | « base/win/windows_version.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/flash_ui.cc
diff --git a/chrome/browser/ui/webui/flash_ui.cc b/chrome/browser/ui/webui/flash_ui.cc
index 0fdaadb6e54ad77246167d54665f8fa882d5fb94..6ab19ef613e739937e1e59cec9bc7bc20c718319 100644
--- a/chrome/browser/ui/webui/flash_ui.cc
+++ b/chrome/browser/ui/webui/flash_ui.cc
@@ -244,14 +244,12 @@ void FlashDOMHandler::MaybeRespondToPage() {
#if defined(OS_WIN)
base::win::OSInfo* os = base::win::OSInfo::GetInstance();
switch (os->version()) {
- case base::win::VERSION_XP: os_label += " XP"; break;
- case base::win::VERSION_SERVER_2003:
- os_label += " Server 2003 or XP Pro 64 bit";
+ case base::win::VERSION_XP:
+ os_label += " XP or Server 2003 or XP Pro 64 bit";
break;
- case base::win::VERSION_VISTA: os_label += " Vista"; break;
- case base::win::VERSION_SERVER_2008: os_label += " Server 2008"; break;
- case base::win::VERSION_WIN7: os_label += " 7"; break;
- case base::win::VERSION_WIN8: os_label += " 8"; break;
+ case base::win::VERSION_VISTA: os_label += " Vista or Server 2008"; break;
+ case base::win::VERSION_WIN7: os_label += " 7 or Server 2008 R2"; break;
+ case base::win::VERSION_WIN8: os_label += " 8 or Server 2012"; break;
default: os_label += " UNKNOWN"; break;
}
os_label += " SP" + base::IntToString(os->service_pack().major);
« no previous file with comments | « base/win/windows_version.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698