Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(782)

Unified Diff: ppapi/proxy/ppp_content_decryptor_private_proxy.h

Issue 811923002: Changes to support CDM_7 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CrOS compile error Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/proxy/ppp_content_decryptor_private_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 217a9b9ed520d496ed6aecb6d8311612b2057196..398be63abc23b35c1e8781204f29c40c96175d8c 100644
--- a/ppapi/proxy/ppp_content_decryptor_private_proxy.h
+++ b/ppapi/proxy/ppp_content_decryptor_private_proxy.h
@@ -36,13 +36,15 @@ class PPP_ContentDecryptor_Private_Proxy : public InterfaceProxy {
void OnMsgSetServerCertificate(PP_Instance instance,
uint32_t promise_id,
std::vector<uint8_t> server_certificate);
- void OnMsgCreateSession(PP_Instance instance,
- uint32_t promise_id,
- SerializedVarReceiveInput init_data_type,
- SerializedVarReceiveInput init_data,
- PP_SessionType session_type);
+ void OnMsgCreateSessionAndGenerateRequest(
+ PP_Instance instance,
+ uint32_t promise_id,
+ PP_SessionType session_type,
+ SerializedVarReceiveInput init_data_type,
+ SerializedVarReceiveInput init_data);
void OnMsgLoadSession(PP_Instance instance,
uint32_t promise_id,
+ PP_SessionType session_type,
SerializedVarReceiveInput web_session_id);
void OnMsgUpdateSession(PP_Instance instance,
uint32_t promise_id,
@@ -54,9 +56,6 @@ class PPP_ContentDecryptor_Private_Proxy : public InterfaceProxy {
void OnMsgRemoveSession(PP_Instance instance,
uint32_t promise_id,
const std::string& web_session_id);
- void OnMsgGetUsableKeyIds(PP_Instance instance,
- uint32_t promise_id,
- const std::string& web_session_id);
void OnMsgDecrypt(PP_Instance instance,
const PPPDecryptor_Buffer& encrypted_buffer,
const std::string& serialized_encrypted_block_info);
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/proxy/ppp_content_decryptor_private_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698