| Index: content/common/gpu/media/gpu_video_decode_accelerator.cc
|
| ===================================================================
|
| --- content/common/gpu/media/gpu_video_decode_accelerator.cc (revision 132263)
|
| +++ content/common/gpu/media/gpu_video_decode_accelerator.cc (working copy)
|
| @@ -116,8 +116,7 @@
|
|
|
| void GpuVideoDecodeAccelerator::Initialize(
|
| const media::VideoCodecProfile profile,
|
| - IPC::Message* init_done_msg,
|
| - base::ProcessHandle renderer_process) {
|
| + IPC::Message* init_done_msg) {
|
| DCHECK(!video_decode_accelerator_.get());
|
| DCHECK(!init_done_msg_);
|
| DCHECK(init_done_msg);
|
| @@ -133,7 +132,7 @@
|
| }
|
| DLOG(INFO) << "Initializing DXVA HW decoder for windows.";
|
| DXVAVideoDecodeAccelerator* video_decoder =
|
| - new DXVAVideoDecodeAccelerator(this, renderer_process);
|
| + new DXVAVideoDecodeAccelerator(this);
|
| #else // OS_WIN
|
| OmxVideoDecodeAccelerator* video_decoder =
|
| new OmxVideoDecodeAccelerator(this);
|
|
|