| Index: content/common/gpu/gpu_command_buffer_stub.cc
|
| diff --git a/content/common/gpu/gpu_command_buffer_stub.cc b/content/common/gpu/gpu_command_buffer_stub.cc
|
| index 39a75d2165055f20ca43cbe75afacd72bb67fcb4..bc3fc2247a97f2ca830eb54057ff5f0b397a89bf 100644
|
| --- a/content/common/gpu/gpu_command_buffer_stub.cc
|
| +++ b/content/common/gpu/gpu_command_buffer_stub.cc
|
| @@ -883,13 +883,13 @@ void GpuCommandBufferStub::PutChanged() {
|
| }
|
|
|
| void GpuCommandBufferStub::OnCreateVideoDecoder(
|
| - media::VideoCodecProfile profile,
|
| + const media::VideoDecodeAccelerator::InitParams& params,
|
| int32 decoder_route_id,
|
| IPC::Message* reply_message) {
|
| TRACE_EVENT0("gpu", "GpuCommandBufferStub::OnCreateVideoDecoder");
|
| GpuVideoDecodeAccelerator* decoder = new GpuVideoDecodeAccelerator(
|
| decoder_route_id, this, channel_->io_task_runner());
|
| - decoder->Initialize(profile, reply_message);
|
| + decoder->Initialize(params, reply_message);
|
| // decoder is registered as a DestructionObserver of this stub and will
|
| // self-delete during destruction of this stub.
|
| }
|
|
|