Chromium Code Reviews| Index: ppapi/proxy/ppb_instance_proxy.h |
| diff --git a/ppapi/proxy/ppb_instance_proxy.h b/ppapi/proxy/ppb_instance_proxy.h |
| index e2ac4d7d1f147fd3db915622e987d118d87ad61b..d152d2a673a1b4197003999045f0ece3fc2b11b6 100644 |
| --- a/ppapi/proxy/ppb_instance_proxy.h |
| +++ b/ppapi/proxy/ppb_instance_proxy.h |
| @@ -101,6 +101,32 @@ class PPB_Instance_Proxy : public InterfaceProxy, |
| const char* text, |
| uint32_t caret, |
| uint32_t anchor) OVERRIDE; |
| + virtual void NeedKey(PP_Instance instance, |
| + PP_Var key_system, |
| + PP_Var session_id, |
| + PP_Var init_data) OVERRIDE; |
| + virtual void KeyAdded(PP_Instance instance, |
| + PP_Var key_system, |
| + PP_Var session_id) OVERRIDE; |
| + virtual void KeyMessage(PP_Instance instance, |
| + PP_Var key_system, |
| + PP_Var session_id, |
| + PP_Resource message, |
| + PP_Var default_url) OVERRIDE; |
| + virtual void KeyError(PP_Instance instance, |
| + PP_Var key_system, |
| + PP_Var session_id, |
| + int32_t media_error, |
| + int32_t system_error) OVERRIDE; |
| + virtual void DeliverBlock(PP_Instance instance, |
| + PP_Resource decrypted_block, |
| + uint64_t request_id) OVERRIDE; |
| + virtual void DeliverFrame(PP_Instance instance, |
| + PP_Resource decrypted_frame, |
| + uint64_t request_id) OVERRIDE; |
| + virtual void DeliverSamples(PP_Instance instance, |
| + PP_Resource decrypted_samples, |
| + uint64_t request_id) OVERRIDE; |
| #if !defined(OS_NACL) |
|
dmichael (off chromium)
2012/08/08 03:38:10
please put your stuff inside of the #if !defined(O
Tom Finegan
2012/08/08 19:02:15
Done.
|
| virtual PP_Var ResolveRelativeToDocument( |
| @@ -173,6 +199,35 @@ class PPB_Instance_Proxy : public InterfaceProxy, |
| const std::string& text, |
| uint32_t caret, |
| uint32_t anchor); |
| + |
| + virtual void OnHostMsgNeedKey(PP_Instance instance, |
| + SerializedVarReceiveInput key_system, |
| + SerializedVarReceiveInput session_id, |
| + SerializedVarReceiveInput init_data); |
| + virtual void OnHostMsgKeyAdded(PP_Instance instance, |
| + SerializedVarReceiveInput key_system, |
| + SerializedVarReceiveInput session_id); |
| + virtual void OnHostMsgKeyMessage(PP_Instance instance, |
| + SerializedVarReceiveInput key_system, |
| + SerializedVarReceiveInput session_id, |
| + const ppapi::HostResource& message, |
| + SerializedVarReceiveInput default_url); |
| + virtual void OnHostMsgKeyError(PP_Instance instance, |
| + SerializedVarReceiveInput key_system, |
| + SerializedVarReceiveInput session_id, |
| + int32_t media_error, |
| + int32_t system_error); |
| + virtual void OnHostMsgDeliverBlock(PP_Instance instance, |
| + const ppapi::HostResource& decrypted_block, |
| + uint64_t request_id); |
| + virtual void OnHostMsgDeliverFrame(PP_Instance instance, |
| + const ppapi::HostResource& decrypted_frame, |
| + uint64_t request_id); |
| + virtual void OnHostMsgDeliverSamples( |
| + PP_Instance instance, |
| + const ppapi::HostResource& decrypted_samples, |
| + uint64_t request_id); |
| + |
| #if !defined(OS_NACL) |
|
dmichael (off chromium)
2012/08/08 03:38:10
please put your message handlers inside the:
#if !
Tom Finegan
2012/08/08 19:02:15
Done.
|
| void OnHostMsgResolveRelativeToDocument(PP_Instance instance, |
| SerializedVarReceiveInput relative, |