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

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

Issue 1656433002: Sample code: IPC Transport object for GPU Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GpuMemoryBufferService + Transport object. TODO: Eliminate ChildThreadImpl dependency Created 4 years, 10 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 | « content/browser/gpu/gpu_process_host.h ('k') | content/common/gpu/client/command_buffer_proxy_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/gpu/gpu_process_host.cc
diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc
index 99270e53bd52ad3ec3c7e89479a01138b97089a5..8218691e27c5f826423ec42509995644b4988e31 100644
--- a/content/browser/gpu/gpu_process_host.cc
+++ b/content/browser/gpu/gpu_process_host.cc
@@ -709,7 +709,7 @@ void GpuProcessHost::EstablishGpuChannel(
void GpuProcessHost::CreateViewCommandBuffer(
const gfx::GLSurfaceHandle& compositing_surface,
int client_id,
- const GPUCreateCommandBufferConfig& init_params,
+ const GpuCreateCommandBufferConfig& init_params,
int route_id,
const CreateCommandBufferCallback& callback) {
TRACE_EVENT0("gpu", "GpuProcessHost::CreateViewCommandBuffer");
@@ -739,7 +739,7 @@ void GpuProcessHost::CreateGpuMemoryBuffer(
DCHECK(CalledOnValidThread());
- GpuMsg_CreateGpuMemoryBuffer_Params params;
+ CreateGpuMemoryBufferParams params;
params.id = id;
params.size = size;
params.format = format;
@@ -765,7 +765,7 @@ void GpuProcessHost::CreateGpuMemoryBufferFromHandle(
DCHECK(CalledOnValidThread());
- GpuMsg_CreateGpuMemoryBufferFromHandle_Params params;
+ CreateGpuMemoryBufferFromHandleParams params;
params.handle = handle;
params.id = id;
params.size = size;
« no previous file with comments | « content/browser/gpu/gpu_process_host.h ('k') | content/common/gpu/client/command_buffer_proxy_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698