Index: ppapi/proxy/ppp_content_decryptor_private_proxy.h |
diff --git a/ppapi/proxy/ppp_content_decryptor_private_proxy.h b/ppapi/proxy/ppp_content_decryptor_private_proxy.h |
index 6ed8d2224996cf664f46fbf4bb3c4cb6d82847fb..0a3811ec48325cc8e02a4e7a91fe442645a62556 100644 |
--- a/ppapi/proxy/ppp_content_decryptor_private_proxy.h |
+++ b/ppapi/proxy/ppp_content_decryptor_private_proxy.h |
@@ -33,15 +33,17 @@ class PPP_ContentDecryptor_Private_Proxy : public InterfaceProxy { |
SerializedVarReceiveInput init_data); |
void OnMsgAddKey(PP_Instance instance, |
SerializedVarReceiveInput session_id, |
- SerializedVarReceiveInput key); |
+ SerializedVarReceiveInput key, |
+ SerializedVarReceiveInput init_data); |
void OnMsgCancelKeyRequest(PP_Instance instance, |
SerializedVarReceiveInput session_id); |
void OnMsgDecrypt(PP_Instance instance, |
const PPPDecryptor_Buffer& encrypted_buffer, |
- int32_t request_id); |
- void OnMsgDecryptAndDecode(PP_Instance instance, |
- const HostResource& encrypted_block, |
- int32_t request_id); |
+ const std::string& serialized_encrypted_block_info); |
+ void OnMsgDecryptAndDecode( |
+ PP_Instance instance, |
+ const PPPDecryptor_Buffer& encrypted_buffer, |
+ const std::string& serialized_encrypted_block_info); |
const PPP_ContentDecryptor_Private* ppp_decryptor_impl_; |