Commit b19898b2 authored by rvargas's avatar rvargas Committed by Commit bot

Revert "Disable the scoped handle verifier (and close hook) for M-39"

This reverts commit 20d99284. {#297319}

BUG=418816
R=cpu@chromium.org
TBR=cpu@chromium.org

Review URL: https://codereview.chromium.org/616533004

Cr-Commit-Position: refs/heads/master@{#297342}
parent 0ee0ce70
......@@ -66,6 +66,12 @@ void CloseHandleHooks::Unpatch() {
}
bool UseHooks() {
chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
if (channel == chrome::VersionInfo::CHANNEL_CANARY ||
channel == chrome::VersionInfo::CHANNEL_DEV) {
return true;
}
return false;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment