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