| Index: content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| diff --git a/content/common/gpu/client/gpu_video_decode_accelerator_host.cc b/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| index 1f0e3980d49dc5b0d4aaae1522bf4564f209d29a..43eb868928abdbd52203fe368a5ef23fd78f4a83 100644
|
| --- a/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| +++ b/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| @@ -161,11 +161,11 @@ void GpuVideoDecodeAcceleratorHost::ReusePictureBuffer(
|
| decoder_route_id_, picture_buffer_id));
|
| }
|
|
|
| -void GpuVideoDecodeAcceleratorHost::Flush() {
|
| +void GpuVideoDecodeAcceleratorHost::Flush(bool return_buffers) {
|
| DCHECK(CalledOnValidThread());
|
| if (!channel_)
|
| return;
|
| - Send(new AcceleratedVideoDecoderMsg_Flush(decoder_route_id_));
|
| + Send(new AcceleratedVideoDecoderMsg_Flush(decoder_route_id_, return_buffers));
|
| }
|
|
|
| void GpuVideoDecodeAcceleratorHost::Reset() {
|
|
|