Chromium Code Reviews| Index: content/browser/browser_main_loop.cc |
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc |
| index 64e3446bcce54b75ed116e3820d246929c916dcc..53d20927c20f7f6c4dd35b74abf6a81611f6df02 100644 |
| --- a/content/browser/browser_main_loop.cc |
| +++ b/content/browser/browser_main_loop.cc |
| @@ -40,6 +40,7 @@ |
| #include "content/browser/time_zone_monitor.h" |
| #include "content/browser/webui/content_web_ui_controller_factory.h" |
| #include "content/browser/webui/url_data_manager.h" |
| +#include "content/common/content_switches_internal.h" |
| #include "content/public/browser/browser_main_parts.h" |
| #include "content/public/browser/browser_shutdown.h" |
| #include "content/public/browser/content_browser_client.h" |
| @@ -1065,6 +1066,10 @@ int BrowserMainLoop::BrowserThreadsStarted() { |
| device_monitor_mac_.reset(new DeviceMonitorMac()); |
| #endif |
| +#if defined(OS_WIN) |
| + LOCAL_HISTOGRAM_BOOLEAN("Windows.Win32kRendererLockdown", |
| + IsWin32kRendererLockdownEnabled()); |
| +#endif |
|
Will Harris
2015/01/27 04:12:17
wasn't sure the best place to put this histogram.
|
| // RDH needs the IO thread to be created |
| { |
| TRACE_EVENT0("startup", |