| Index: content/common/gpu/client/command_buffer_proxy_impl.cc
|
| diff --git a/content/common/gpu/client/command_buffer_proxy_impl.cc b/content/common/gpu/client/command_buffer_proxy_impl.cc
|
| index d100e80d681702c284c3a0419c85e27b47c998ab..169aeed1573da0312983bc02377a84f1e11cdff4 100644
|
| --- a/content/common/gpu/client/command_buffer_proxy_impl.cc
|
| +++ b/content/common/gpu/client/command_buffer_proxy_impl.cc
|
| @@ -450,10 +450,12 @@ void CommandBufferProxyImpl::SetNotifyRepaintTask(const base::Closure& task) {
|
| scoped_refptr<GpuVideoDecodeAcceleratorHost>
|
| CommandBufferProxyImpl::CreateVideoDecoder(
|
| media::VideoCodecProfile profile,
|
| + const gfx::Size& size,
|
| + const std::vector<uint8_t>& extra_data,
|
| media::VideoDecodeAccelerator::Client* client) {
|
| int decoder_route_id;
|
| - if (!Send(new GpuCommandBufferMsg_CreateVideoDecoder(route_id_, profile,
|
| - &decoder_route_id))) {
|
| + if (!Send(new GpuCommandBufferMsg_CreateVideoDecoder(
|
| + route_id_, profile, size, extra_data, &decoder_route_id))) {
|
| LOG(ERROR) << "Send(GpuCommandBufferMsg_CreateVideoDecoder) failed";
|
| return NULL;
|
| }
|
|
|