| Index: ppapi/proxy/video_source_resource.h
|
| diff --git a/ppapi/proxy/video_source_resource.h b/ppapi/proxy/video_source_resource.h
|
| index 641a723ea9af398287e1d6bd583d1b3d8d920ffd..23d7240706be71bac77466f6d07d2bc472d88b40 100644
|
| --- a/ppapi/proxy/video_source_resource.h
|
| +++ b/ppapi/proxy/video_source_resource.h
|
| @@ -14,6 +14,7 @@
|
| #include "ppapi/proxy/ppapi_proxy_export.h"
|
| #include "ppapi/thunk/ppb_video_source_private_api.h"
|
|
|
| +struct PP_ImageDataDesc;
|
| struct PP_VideoFrame_Private;
|
|
|
| namespace ppapi {
|
| @@ -45,11 +46,13 @@ class PPAPI_PROXY_EXPORT VideoSourceResource
|
|
|
| private:
|
| void OnPluginMsgOpenComplete(
|
| - const ResourceMessageReplyParams& params);
|
| + const ResourceMessageReplyParams& reply_params);
|
| void OnPluginMsgGetFrameComplete(
|
| PP_VideoFrame_Private* frame,
|
| - const ResourceMessageReplyParams& params,
|
| + const ResourceMessageReplyParams& reply_params,
|
| const HostResource& image_data,
|
| + const PP_ImageDataDesc& image_desc_data,
|
| + int fd,
|
| PP_TimeTicks timestamp);
|
|
|
| scoped_refptr<TrackedCallback> open_callback_;
|
|
|