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

Unified Diff: chrome/common/child_process_logging_mac.mm

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
Index: chrome/common/child_process_logging_mac.mm
===================================================================
--- chrome/common/child_process_logging_mac.mm (revision 136164)
+++ chrome/common/child_process_logging_mac.mm (working copy)
@@ -142,10 +142,10 @@
void SetGpuInfoImpl(const content::GPUInfo& gpu_info,
SetCrashKeyValueFuncPtr set_key_func) {
SetGpuKeyValue(kGPUVendorIdParamName,
- base::StringPrintf("0x%04x", gpu_info.vendor_id),
+ base::StringPrintf("0x%04x", gpu_info.gpu.vendor_id),
set_key_func);
SetGpuKeyValue(kGPUDeviceIdParamName,
- base::StringPrintf("0x%04x", gpu_info.device_id),
+ base::StringPrintf("0x%04x", gpu_info.gpu.device_id),
set_key_func);
SetGpuKeyValue(kGPUDriverVersionParamName,
gpu_info.driver_version,

Powered by Google App Engine
This is Rietveld 408576698