| Index: content/renderer/gpu/gpu_channel_host.cc
|
| diff --git a/content/renderer/gpu/gpu_channel_host.cc b/content/renderer/gpu/gpu_channel_host.cc
|
| index 910da7d58ca9bb268419055eeae1055faa295ae7..73bf14fd3f61b7676c96bf817777b3a3e223dcb9 100644
|
| --- a/content/renderer/gpu/gpu_channel_host.cc
|
| +++ b/content/renderer/gpu/gpu_channel_host.cc
|
| @@ -238,13 +238,13 @@ CommandBufferProxy* GpuChannelHost::CreateViewCommandBuffer(
|
|
|
| GpuVideoDecodeAcceleratorHost* GpuChannelHost::CreateVideoDecoder(
|
| int command_buffer_route_id,
|
| - const std::vector<int32>& configs,
|
| + media::VideoDecodeAccelerator::Profile profile,
|
| media::VideoDecodeAccelerator::Client* client) {
|
| AutoLock lock(context_lock_);
|
| ProxyMap::iterator it = proxies_.find(command_buffer_route_id);
|
| DCHECK(it != proxies_.end());
|
| CommandBufferProxy* proxy = it->second;
|
| - return proxy->CreateVideoDecoder(configs, client);
|
| + return proxy->CreateVideoDecoder(profile, client);
|
| }
|
|
|
| CommandBufferProxy* GpuChannelHost::CreateOffscreenCommandBuffer(
|
|
|