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

Unified Diff: sandbox/win/src/interception.cc

Issue 1814863004: Cleanup/Remove Windows XP/Vista version checks from Windows sandbox code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More changes Created 4 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
Index: sandbox/win/src/interception.cc
diff --git a/sandbox/win/src/interception.cc b/sandbox/win/src/interception.cc
index f0a2a61fb379be2d5d072ddf4f1dc96b333a4f11..ce3d4252ef770558e0374de0a79a176907accab8 100644
--- a/sandbox/win/src/interception.cc
+++ b/sandbox/win/src/interception.cc
@@ -469,12 +469,6 @@ bool InterceptionManager::PatchClientFunctions(DllInterceptionData* thunks,
return false;
}
- if (base::win::GetVersion() <= base::win::VERSION_VISTA) {
- Wow64 WowHelper(child_, ntdll_base);
- if (!WowHelper.WaitForNtdll())
Will Harris 2016/03/17 23:05:58 this appears to be the only place this is used, so
kylix_rd 2016/03/17 23:40:10 I will certainly look into that.
kylix_rd 2016/03/21 19:09:09 Done.
- return false;
- }
-
char* interceptor_base = NULL;
#if SANDBOX_EXPORTS

Powered by Google App Engine
This is Rietveld 408576698