| Index: content/renderer/media/pepper_platform_video_decoder_impl.cc
|
| diff --git a/content/renderer/media/pepper_platform_video_decoder_impl.cc b/content/renderer/media/pepper_platform_video_decoder_impl.cc
|
| index 503cd43dbe56bc745f9e39167d1a3a5115d990cd..62e5d2396a229b6f4115927d6e7f60dca2311321 100644
|
| --- a/content/renderer/media/pepper_platform_video_decoder_impl.cc
|
| +++ b/content/renderer/media/pepper_platform_video_decoder_impl.cc
|
| @@ -90,9 +90,11 @@ void PlatformVideoDecoderImpl::NotifyError(
|
|
|
| void PlatformVideoDecoderImpl::ProvidePictureBuffers(
|
| uint32 requested_num_of_buffers,
|
| - const gfx::Size& dimensions) {
|
| + const gfx::Size& dimensions,
|
| + uint32 texture_target) {
|
| DCHECK(RenderThreadImpl::current());
|
| - client_->ProvidePictureBuffers(requested_num_of_buffers, dimensions);
|
| + client_->ProvidePictureBuffers(requested_num_of_buffers, dimensions,
|
| + texture_target);
|
| }
|
|
|
| void PlatformVideoDecoderImpl::DismissPictureBuffer(int32 picture_buffer_id) {
|
|
|