Chromium Code Reviews| 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..f8012bf46dfa4eba37e632484baf684b2b2344ae 100644 |
| --- a/content/browser/devtools/devtools_system_info_handler.cc |
| +++ b/content/browser/devtools/devtools_system_info_handler.cc |
| @@ -101,6 +101,8 @@ DevToolsSystemInfoHandler::~DevToolsSystemInfoHandler() { |
| scoped_refptr<DevToolsProtocol::Response> |
| DevToolsSystemInfoHandler::OnGetInfo( |
| scoped_refptr<DevToolsProtocol::Command> command) { |
| + VLOG(2) << "DevToolsSystemInfoHanler::OnGetInfo() : BEGIN"; |
|
Ken Russell (switch to Gerrit)
2014/10/31 23:39:43
Typo: Handler. Here and below.
|
| + |
| gpu::GPUInfo gpu_info = GpuDataManagerImpl::GetInstance()->GetGPUInfo(); |
| base::DictionaryValue* gpu_dict = new base::DictionaryValue; |
| @@ -124,6 +126,8 @@ DevToolsSystemInfoHandler::OnGetInfo( |
| 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) << "DevToolsSystemInfoHanler::OnGetInfo() : END"; |
| return command->SuccessResponse(system_dict); |
| } |