| Index: ppapi/thunk/ppb_video_frame_api.h
|
| diff --git a/ppapi/thunk/ppb_video_frame_api.h b/ppapi/thunk/ppb_video_frame_api.h
|
| index d3c46b824ab2b47f6581b66d574f5c697ab1e1bb..105d72b9988f07e066f2e760df457b4684f7ac4f 100644
|
| --- a/ppapi/thunk/ppb_video_frame_api.h
|
| +++ b/ppapi/thunk/ppb_video_frame_api.h
|
| @@ -10,7 +10,7 @@
|
|
|
| namespace ppapi {
|
|
|
| -union MediaStreamFrame;
|
| +union MediaStreamBuffer;
|
|
|
| namespace thunk {
|
|
|
| @@ -25,8 +25,8 @@ class PPAPI_THUNK_EXPORT PPB_VideoFrame_API {
|
| virtual uint32_t GetDataBufferSize() = 0;
|
|
|
| // Methods used by Pepper internal implementation only.
|
| - virtual MediaStreamFrame* GetFrameBuffer() = 0;
|
| - virtual int32_t GetFrameBufferIndex() = 0;
|
| + virtual MediaStreamBuffer* GetBuffer() = 0;
|
| + virtual int32_t GetBufferIndex() = 0;
|
| virtual void Invalidate() = 0;
|
| };
|
|
|
|
|