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

Unified Diff: ppapi/thunk/ppb_instance_api.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/thunk/ppb_content_decryptor_private_thunk.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_instance_api.h
diff --git a/ppapi/thunk/ppb_instance_api.h b/ppapi/thunk/ppb_instance_api.h
index 54636a3edfeaa53bfeccc872ae123020b7273b77..bac3f97292a3c3735872f1c6fa5b5b75ba3daf96 100644
--- a/ppapi/thunk/ppb_instance_api.h
+++ b/ppapi/thunk/ppb_instance_api.h
@@ -143,16 +143,16 @@ class PPB_Instance_API {
#if !defined(OS_NACL)
// Content Decryptor.
virtual void SessionCreated(PP_Instance instance,
- uint32 reference_id,
- PP_Var session_id) = 0;
+ uint32 session_id,
+ PP_Var web_session_id) = 0;
virtual void SessionMessage(PP_Instance instance,
- uint32 reference_id,
+ uint32 session_id,
PP_Var message,
PP_Var destination_url) = 0;
- virtual void SessionReady(PP_Instance instance, uint32 reference_id) = 0;
- virtual void SessionClosed(PP_Instance instance, uint32 reference_id) = 0;
+ virtual void SessionReady(PP_Instance instance, uint32 session_id) = 0;
+ virtual void SessionClosed(PP_Instance instance, uint32 session_id) = 0;
virtual void SessionError(PP_Instance instance,
- uint32 reference_id,
+ uint32 session_id,
int32_t media_error,
int32_t system_error) = 0;
virtual void DeliverBlock(PP_Instance instance,
« no previous file with comments | « ppapi/thunk/ppb_content_decryptor_private_thunk.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698