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

Unified Diff: content/browser/devtools/devtools_system_info_handler.cc

Issue 698783002: Revert of Revert of Add logs to debug a flakiness on GPU Mac bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
Index: content/browser/devtools/devtools_system_info_handler.cc
diff --git a/content/browser/devtools/devtools_system_info_handler.cc b/content/browser/devtools/devtools_system_info_handler.cc
index 15261b3e466e5fa343149eecfa5b0000b97a622b..afcba28e16072fa1adc121e317692dc80ae72aef 100644
--- a/content/browser/devtools/devtools_system_info_handler.cc
+++ b/content/browser/devtools/devtools_system_info_handler.cc
@@ -101,6 +101,8 @@
scoped_refptr<DevToolsProtocol::Response>
DevToolsSystemInfoHandler::OnGetInfo(
scoped_refptr<DevToolsProtocol::Command> command) {
+ VLOG(2) << "DevToolsSystemInfoHandler::OnGetInfo() : BEGIN";
+
gpu::GPUInfo gpu_info = GpuDataManagerImpl::GetInstance()->GetGPUInfo();
base::DictionaryValue* gpu_dict = new base::DictionaryValue;
@@ -124,6 +126,8 @@
system_dict->SetString(kModelName, gpu_info.machine_model_name);
system_dict->SetString(kModelVersion, gpu_info.machine_model_version);
system_dict->Set(kGPU, gpu_dict);
+
+ VLOG(2) << "DevToolsSystemInfoHandler::OnGetInfo() : END";
return command->SuccessResponse(system_dict);
}
« no previous file with comments | « content/browser/devtools/devtools_http_handler_impl.cc ('k') | content/browser/gpu/gpu_data_manager_impl_private.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698