Index: chrome/browser/gpu_process_host_ui_shim.cc |
=================================================================== |
--- chrome/browser/gpu_process_host_ui_shim.cc (revision 72707) |
+++ chrome/browser/gpu_process_host_ui_shim.cc (working copy) |
@@ -82,12 +82,13 @@ |
return router_.RouteMessage(message); |
} |
-void GpuProcessHostUIShim::CollectGraphicsInfoAsynchronously() { |
+void GpuProcessHostUIShim::CollectGraphicsInfoAsynchronously( |
+ GPUInfo::Level level) { |
DCHECK(CalledOnValidThread()); |
BrowserThread::PostTask( |
BrowserThread::IO, |
FROM_HERE, |
- new SendOnIOThreadTask(new GpuMsg_CollectGraphicsInfo())); |
+ new SendOnIOThreadTask(new GpuMsg_CollectGraphicsInfo(level))); |
} |
void GpuProcessHostUIShim::SendAboutGpuCrash() { |