| Index: chrome/app/chrome_main_delegate.cc
|
| diff --git a/chrome/app/chrome_main_delegate.cc b/chrome/app/chrome_main_delegate.cc
|
| index e4fa69afd1d1bb9270ed1a9bc6beca0c7797c2a7..5f7d686d53089b5086e646783331638424eaafa8 100644
|
| --- a/chrome/app/chrome_main_delegate.cc
|
| +++ b/chrome/app/chrome_main_delegate.cc
|
| @@ -194,7 +194,7 @@ bool IsSandboxedProcess() {
|
| return is_sandboxed_process_func && is_sandboxed_process_func();
|
| }
|
|
|
| -bool UseHooks() {
|
| +bool UseHandleVerifier() {
|
| #if defined(ARCH_CPU_X86_64)
|
| return false;
|
| #elif defined(NDEBUG)
|
| @@ -519,7 +519,7 @@ bool ChromeMainDelegate::BasicStartupComplete(int* exit_code) {
|
| return true;
|
| }
|
|
|
| - if (UseHooks())
|
| + if (UseHandleVerifier())
|
| base::debug::InstallHandleHooks();
|
| else
|
| base::win::DisableHandleVerifier();
|
|
|