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

Unified Diff: chrome/common/child_process_logging_win.cc

Issue 10389051: Change GPUInfo to handle multiple GPUs. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 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 | « chrome/common/child_process_logging_posix.cc ('k') | content/browser/gpu/gpu_data_manager_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/child_process_logging_win.cc
===================================================================
--- chrome/common/child_process_logging_win.cc (revision 136164)
+++ chrome/common/child_process_logging_win.cc (working copy)
@@ -155,8 +155,8 @@
return;
}
(set_gpu_info)(
- base::StringPrintf(L"0x%04x", gpu_info.vendor_id).c_str(),
- base::StringPrintf(L"0x%04x", gpu_info.device_id).c_str(),
+ base::StringPrintf(L"0x%04x", gpu_info.gpu.vendor_id).c_str(),
+ base::StringPrintf(L"0x%04x", gpu_info.gpu.device_id).c_str(),
UTF8ToUTF16(gpu_info.driver_version).c_str(),
UTF8ToUTF16(gpu_info.pixel_shader_version).c_str(),
UTF8ToUTF16(gpu_info.vertex_shader_version).c_str());
« no previous file with comments | « chrome/common/child_process_logging_posix.cc ('k') | content/browser/gpu/gpu_data_manager_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698