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

Unified Diff: chrome/browser/media/webrtc_logging_handler_host.cc

Issue 241793002: Fix machine_model behaviors in gpu blacklist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 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 | « no previous file | content/browser/devtools/devtools_system_info_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/webrtc_logging_handler_host.cc
diff --git a/chrome/browser/media/webrtc_logging_handler_host.cc b/chrome/browser/media/webrtc_logging_handler_host.cc
index 90e0bfa632b5f2efa9cabb6fcbf0cf5e5d69ae63..d9ea6756c97890d86e5f14482576f43c5a26fb39 100644
--- a/chrome/browser/media/webrtc_logging_handler_host.cc
+++ b/chrome/browser/media/webrtc_logging_handler_host.cc
@@ -385,11 +385,13 @@ void WebRtcLoggingHandlerHost::LogInitialInfoOnIOThread(
// GPU
gpu::GPUInfo gpu_info = content::GpuDataManager::GetInstance()->GetGPUInfo();
- LogToCircularBuffer("Gpu: machine-model='" + gpu_info.machine_model +
- "', vendor-id=" + IntToString(gpu_info.gpu.vendor_id) +
- ", device-id=" + IntToString(gpu_info.gpu.device_id) +
- ", driver-vendor='" + gpu_info.driver_vendor +
- "', driver-version=" + gpu_info.driver_version);
+ LogToCircularBuffer(
+ "Gpu: machine-model-name='" + gpu_info.machine_model_name +
+ "', machine-model-version=" + gpu_info.machine_model_version +
+ "', vendor-id=" + IntToString(gpu_info.gpu.vendor_id) +
+ ", device-id=" + IntToString(gpu_info.gpu.device_id) +
+ ", driver-vendor='" + gpu_info.driver_vendor +
+ "', driver-version=" + gpu_info.driver_version);
// Network interfaces
LogToCircularBuffer("Discovered " + IntToString(network_list.size()) +
« no previous file with comments | « no previous file | content/browser/devtools/devtools_system_info_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698