| Index: ppapi/proxy/ppb_video_decoder_proxy.h
|
| diff --git a/ppapi/proxy/ppb_video_decoder_proxy.h b/ppapi/proxy/ppb_video_decoder_proxy.h
|
| index 7461a1fdfc324bbc299513c86dd13f0715c6980f..1eeab469038ce6b1e9ade4af47692991ef2e89ab 100644
|
| --- a/ppapi/proxy/ppb_video_decoder_proxy.h
|
| +++ b/ppapi/proxy/ppb_video_decoder_proxy.h
|
| @@ -24,7 +24,10 @@ class PPB_VideoDecoder_Proxy : public InterfaceProxy {
|
| static PP_Resource CreateProxyResource(
|
| PP_Instance instance,
|
| PP_Resource graphics_context,
|
| - PP_VideoDecoder_Profile profile);
|
| + PP_VideoDecoder_Profile profile,
|
| + PP_Size frame_size,
|
| + const uint8_t* extra_data,
|
| + uint32_t extra_data_size);
|
|
|
| // InterfaceProxy implementation.
|
| virtual bool OnMessageReceived(const IPC::Message& msg);
|
| @@ -37,6 +40,8 @@ class PPB_VideoDecoder_Proxy : public InterfaceProxy {
|
| void OnMsgCreate(PP_Instance instance,
|
| const ppapi::HostResource& graphics_context,
|
| PP_VideoDecoder_Profile profile,
|
| + const PP_Size& frame_size,
|
| + const std::vector<uint8_t>& extra_data,
|
| ppapi::HostResource* result);
|
| void OnMsgDecode(
|
| const ppapi::HostResource& decoder,
|
|
|