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

Unified Diff: chrome/app/chrome_exe_main.cc

Issue 28128: Fix all places where we used the GetWinVersion function... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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_util_unittest.cc ('k') | chrome/browser/browser_main_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_exe_main.cc
===================================================================
--- chrome/app/chrome_exe_main.cc (revision 10275)
+++ chrome/app/chrome_exe_main.cc (working copy)
@@ -27,8 +27,7 @@
base::AtExitManager exit_manager;
win_util::WinVersion win_version = win_util::GetWinVersion();
- if (win_version == win_util::WINVERSION_XP ||
- win_version == win_util::WINVERSION_SERVER_2003) {
+ if (win_version < win_util::WINVERSION_VISTA) {
// On Vista, this is unnecessary since it is controlled through the
// /NXCOMPAT linker flag.
// Enforces strong DEP support.
« no previous file with comments | « base/win_util_unittest.cc ('k') | chrome/browser/browser_main_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698