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

Unified Diff: chrome/app/chrome_main_delegate.cc

Issue 1580873003: Enable handle verifier for tests and add some tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add more tests Created 4 years, 11 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 | « base/win/scoped_handle_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..2cbc515c06a18201c65245ac368e8876a6ac0d68 100644
--- a/chrome/app/chrome_main_delegate.cc
+++ b/chrome/app/chrome_main_delegate.cc
@@ -200,7 +200,8 @@ bool UseHooks() {
#elif defined(NDEBUG)
version_info::Channel channel = chrome::GetChannel();
if (channel == version_info::Channel::CANARY ||
- channel == version_info::Channel::DEV) {
+ channel == version_info::Channel::DEV ||
+ channel == version_info::Channel::UNKNOWN) {
cpu_(ooo_6.6-7.5) 2016/01/19 22:53:49 do we need this for the tests?
Will Harris 2016/01/19 23:06:33 AFAIK the bots run on UNKNOWN channel. This is wha
return true;
}
« no previous file with comments | « base/win/scoped_handle_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698