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

Unified Diff: base/win/scoped_handle.cc

Issue 1095163004: Disabling handle verifier till we figure out AppContainer/DuplicateHandle errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Replaced DisableHandleVerifier with Disable method to resolve compile error. Created 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/win/scoped_handle.cc
diff --git a/base/win/scoped_handle.cc b/base/win/scoped_handle.cc
index 2ebef320bb8b143d4f2944ac87f3afbbc4ef8c69..33a8aa5c743b7b27eab6349fa1f0ee953dca6909 100644
--- a/base/win/scoped_handle.cc
+++ b/base/win/scoped_handle.cc
@@ -132,6 +132,10 @@ void ActiveVerifier::InstallVerifier() {
// This lock only protects against races in this module, which is fine.
AutoNativeLock lock(g_lock.Get());
g_active_verifier = verifier ? verifier : new ActiveVerifier(true);
+
+ // TODO(shrikant): Enable handle verifier after figuring out
+ // AppContainer/DuplicateHandle error.
+ g_active_verifier->Disable();
#endif
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698