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

Unified Diff: chrome_frame/delete_chrome_history.cc

Issue 3823002: Move windows version-related stuff out of base/win_util and into base/win/win... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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
Index: chrome_frame/delete_chrome_history.cc
===================================================================
--- chrome_frame/delete_chrome_history.cc (revision 62510)
+++ chrome_frame/delete_chrome_history.cc (working copy)
@@ -7,6 +7,7 @@
#include "chrome/browser/browsing_data_remover.h"
+#include "base/win/windows_version.h"
#include "chrome_frame/chrome_frame_activex.h"
#include "chrome_frame/utils.h"
@@ -65,7 +66,7 @@
// effort to connect. Thus, we detect if we are in that circumstance and exit
// silently.
base::IntegrityLevel integrity_level;
- if (win_util::GetWinVersion() >= win_util::WINVERSION_VISTA &&
+ if (base::win::GetVersion() >= base::win::VERSION_VISTA &&
!base::GetProcessIntegrityLevel(base::GetCurrentProcessHandle(),
&integrity_level)) {
return E_UNEXPECTED;

Powered by Google App Engine
This is Rietveld 408576698