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

Unified Diff: content/browser/gpu/gpu_process_host.cc

Issue 9958034: Convert plugin and GPU process to brokered handle duplication. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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
Index: content/browser/gpu/gpu_process_host.cc
===================================================================
--- content/browser/gpu/gpu_process_host.cc (revision 131361)
+++ content/browser/gpu/gpu_process_host.cc (working copy)
@@ -530,7 +530,7 @@
return;
}
- callback.Run(channel_handle, gpu_process_,
+ callback.Run(channel_handle,
GpuDataManagerImpl::GetInstance()->GetGPUInfo());
}
@@ -779,7 +779,7 @@
const IPC::ChannelHandle& channel_handle,
base::ProcessHandle renderer_process_for_gpu,
const content::GPUInfo& gpu_info) {
- callback.Run(channel_handle, renderer_process_for_gpu, gpu_info);
+ callback.Run(channel_handle, gpu_info);
}
void GpuProcessHost::CreateCommandBufferError(

Powered by Google App Engine
This is Rietveld 408576698