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

Unified Diff: ppapi/proxy/ppp_content_decryptor_private_proxy.h

Issue 105383002: Rename EME WD call parameters (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nit Created 7 years 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 192ab5f8d4a78ce69ca268013cf73fa17e052ddd..dfbcf4f5d42806e575ea56395595266a83220d5b 100644
--- a/ppapi/proxy/ppp_content_decryptor_private_proxy.h
+++ b/ppapi/proxy/ppp_content_decryptor_private_proxy.h
@@ -33,13 +33,13 @@ class PPP_ContentDecryptor_Private_Proxy : public InterfaceProxy {
void OnMsgInitialize(PP_Instance instance,
SerializedVarReceiveInput key_system);
void OnMsgCreateSession(PP_Instance instance,
- uint32_t reference_id,
+ uint32_t session_id,
SerializedVarReceiveInput type,
SerializedVarReceiveInput init_data);
void OnMsgUpdateSession(PP_Instance instance,
- uint32_t reference_id,
+ uint32_t session_id,
SerializedVarReceiveInput response);
- void OnMsgReleaseSession(PP_Instance instance, uint32_t reference_id);
+ void OnMsgReleaseSession(PP_Instance instance, uint32_t 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