Index: content/common/gpu/media/gpu_video_decode_accelerator.cc |
diff --git a/content/common/gpu/media/gpu_video_decode_accelerator.cc b/content/common/gpu/media/gpu_video_decode_accelerator.cc |
index 6ad1329446cbfa7450a667076c062f38998920c1..9c67bbf772ec3be474131b71a93998e44c99a778 100644 |
--- a/content/common/gpu/media/gpu_video_decode_accelerator.cc |
+++ b/content/common/gpu/media/gpu_video_decode_accelerator.cc |
@@ -69,9 +69,12 @@ bool GpuVideoDecodeAccelerator::OnMessageReceived(const IPC::Message& msg) { |
} |
void GpuVideoDecodeAccelerator::ProvidePictureBuffers( |
- uint32 requested_num_of_buffers, const gfx::Size& dimensions) { |
+ uint32 requested_num_of_buffers, |
+ const gfx::Size& dimensions, |
+ uint32 texture_target) { |
if (!Send(new AcceleratedVideoDecoderHostMsg_ProvidePictureBuffers( |
- host_route_id_, requested_num_of_buffers, dimensions))) { |
+ host_route_id_, requested_num_of_buffers, dimensions, |
+ texture_target))) { |
DLOG(ERROR) << "Send(AcceleratedVideoDecoderHostMsg_ProvidePictureBuffers) " |
<< "failed"; |
} |