| Index: content/common/gpu/client/gpu_channel_host.cc
|
| diff --git a/content/common/gpu/client/gpu_channel_host.cc b/content/common/gpu/client/gpu_channel_host.cc
|
| index 2aac8c74ca7a47b7945ba113a0a2380d5073d47d..988feae53c428ae6abc5f5d3ef5fbf39dc9320b3 100644
|
| --- a/content/common/gpu/client/gpu_channel_host.cc
|
| +++ b/content/common/gpu/client/gpu_channel_host.cc
|
| @@ -223,7 +223,7 @@ GpuVideoDecodeAcceleratorHost* GpuChannelHost::CreateVideoDecoder(
|
| AutoLock lock(context_lock_);
|
| ProxyMap::iterator it = proxies_.find(command_buffer_route_id);
|
| DCHECK(it != proxies_.end());
|
| - CommandBufferProxy* proxy = it->second;
|
| + CommandBufferProxyImpl* proxy = it->second;
|
| return proxy->CreateVideoDecoder(profile, client);
|
| }
|
|
|
| @@ -267,7 +267,8 @@ CommandBufferProxy* GpuChannelHost::CreateOffscreenCommandBuffer(
|
| #endif
|
| }
|
|
|
| -void GpuChannelHost::DestroyCommandBuffer(CommandBufferProxy* command_buffer) {
|
| +void GpuChannelHost::DestroyCommandBuffer(
|
| + CommandBufferProxy* command_buffer) {
|
| #if defined(ENABLE_GPU)
|
| AutoLock lock(context_lock_);
|
| int route_id = command_buffer->GetRouteID();
|
|
|