| Index: webkit/plugins/ppapi/ppb_video_decoder_impl.h
|
| diff --git a/webkit/plugins/ppapi/ppb_video_decoder_impl.h b/webkit/plugins/ppapi/ppb_video_decoder_impl.h
|
| index 990e98092afb257282a46d0956faa933c07e12df..634d955bee80a9925bb2d7c59464f1e98ffc48ff 100644
|
| --- a/webkit/plugins/ppapi/ppb_video_decoder_impl.h
|
| +++ b/webkit/plugins/ppapi/ppb_video_decoder_impl.h
|
| @@ -38,7 +38,9 @@ class PPB_VideoDecoder_Impl : public ::ppapi::PPB_VideoDecoder_Shared,
|
| // initialize.
|
| static PP_Resource Create(PP_Instance instance,
|
| PP_Resource graphics_context,
|
| - PP_VideoDecoder_Profile profile);
|
| + PP_VideoDecoder_Profile profile,
|
| + const gfx::Size& frame_size,
|
| + const std::vector<uint8_t>& extra_data);
|
|
|
| // PPB_VideoDecoder_API implementation.
|
| virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer,
|
| @@ -67,7 +69,9 @@ class PPB_VideoDecoder_Impl : public ::ppapi::PPB_VideoDecoder_Shared,
|
| bool Init(PP_Resource graphics_context,
|
| PluginDelegate::PlatformContext3D* context,
|
| gpu::gles2::GLES2Implementation* gles2_impl,
|
| - PP_VideoDecoder_Profile profile);
|
| + PP_VideoDecoder_Profile profile,
|
| + const gfx::Size& frame_size,
|
| + const std::vector<uint8_t>& extra_data);
|
|
|
| // This is NULL before initialization, and if this PPB_VideoDecoder_Impl is
|
| // swapped with another.
|
|
|