| Index: ppapi/thunk/ppb_instance_api.h
|
| diff --git a/ppapi/thunk/ppb_instance_api.h b/ppapi/thunk/ppb_instance_api.h
|
| index b919e31960c9e0ef83f41b4e90b2aeca54cf04a4..9acffd326936e8b7e708d304602a1fc81e1518e3 100644
|
| --- a/ppapi/thunk/ppb_instance_api.h
|
| +++ b/ppapi/thunk/ppb_instance_api.h
|
| @@ -18,6 +18,7 @@
|
| #include "ppapi/c/ppb_gamepad.h"
|
| #include "ppapi/c/ppb_instance.h"
|
| #include "ppapi/c/ppb_mouse_cursor.h"
|
| +#include "ppapi/c/private/pp_content_decryptor.h"
|
| #include "ppapi/c/private/ppb_instance_private.h"
|
| #include "ppapi/shared_impl/api_id.h"
|
|
|
| @@ -157,6 +158,12 @@ class PPB_Instance_API {
|
| virtual void DeliverBlock(PP_Instance instance,
|
| PP_Resource decrypted_block,
|
| const PP_DecryptedBlockInfo* block_info) = 0;
|
| + virtual void DecoderDeinitializeDone(PP_Instance instance,
|
| + PP_StreamType decoder_type,
|
| + uint32_t request_id) = 0;
|
| + virtual void DecoderResetDone(PP_Instance instance,
|
| + PP_StreamType decoder_type,
|
| + uint32_t request_id) = 0;
|
| virtual void DeliverFrame(PP_Instance instance,
|
| PP_Resource decrypted_frame,
|
| const PP_DecryptedFrameInfo* frame_info) = 0;
|
|
|