| 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 eead7fb3c425ccf2a87f371b41610060b104b285..86a3711e84844589207b56acd22054131c986c70 100644
|
| --- a/content/common/gpu/gpu_command_buffer_stub.cc
|
| +++ b/content/common/gpu/gpu_command_buffer_stub.cc
|
| @@ -881,13 +881,13 @@ void GpuCommandBufferStub::PutChanged() {
|
| }
|
|
|
| void GpuCommandBufferStub::OnCreateVideoDecoder(
|
| - media::VideoCodecProfile profile,
|
| + const media::VideoDecodeAccelerator::Config& config,
|
| 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(config, reply_message);
|
| // decoder is registered as a DestructionObserver of this stub and will
|
| // self-delete during destruction of this stub.
|
| }
|
|
|