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

Unified Diff: ppapi/thunk/ppb_content_decryptor_private_thunk.cc

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/ppp_content_decryptor_private_proxy.cc ('k') | ppapi/thunk/ppb_instance_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_content_decryptor_private_thunk.cc
diff --git a/ppapi/thunk/ppb_content_decryptor_private_thunk.cc b/ppapi/thunk/ppb_content_decryptor_private_thunk.cc
index ad9ece95b8d9b722f07c868899b3ac4c7695f910..e434f4f7226874410ae60fcf11a34083fd0342ad 100644
--- a/ppapi/thunk/ppb_content_decryptor_private_thunk.cc
+++ b/ppapi/thunk/ppb_content_decryptor_private_thunk.cc
@@ -3,7 +3,7 @@
// found in the LICENSE file.
// From private/ppb_content_decryptor_private.idl,
-// modified Wed Nov 27 11:47:56 2013.
+// modified Fri Dec 6 12:16:22 2013.
#include "ppapi/c/pp_errors.h"
#include "ppapi/c/private/ppb_content_decryptor_private.h"
@@ -19,17 +19,17 @@ namespace thunk {
namespace {
void SessionCreated(PP_Instance instance,
- uint32_t reference_id,
+ uint32_t session_id,
struct PP_Var web_session_id) {
VLOG(4) << "PPB_ContentDecryptor_Private::SessionCreated()";
EnterInstance enter(instance);
if (enter.failed())
return;
- enter.functions()->SessionCreated(instance, reference_id, web_session_id);
+ enter.functions()->SessionCreated(instance, session_id, web_session_id);
}
void SessionMessage(PP_Instance instance,
- uint32_t reference_id,
+ uint32_t session_id,
struct PP_Var message,
struct PP_Var destination_url) {
VLOG(4) << "PPB_ContentDecryptor_Private::SessionMessage()";
@@ -37,29 +37,29 @@ void SessionMessage(PP_Instance instance,
if (enter.failed())
return;
enter.functions()->SessionMessage(instance,
- reference_id,
+ session_id,
message,
destination_url);
}
-void SessionReady(PP_Instance instance, uint32_t reference_id) {
+void SessionReady(PP_Instance instance, uint32_t session_id) {
VLOG(4) << "PPB_ContentDecryptor_Private::SessionReady()";
EnterInstance enter(instance);
if (enter.failed())
return;
- enter.functions()->SessionReady(instance, reference_id);
+ enter.functions()->SessionReady(instance, session_id);
}
-void SessionClosed(PP_Instance instance, uint32_t reference_id) {
+void SessionClosed(PP_Instance instance, uint32_t session_id) {
VLOG(4) << "PPB_ContentDecryptor_Private::SessionClosed()";
EnterInstance enter(instance);
if (enter.failed())
return;
- enter.functions()->SessionClosed(instance, reference_id);
+ enter.functions()->SessionClosed(instance, session_id);
}
void SessionError(PP_Instance instance,
- uint32_t reference_id,
+ uint32_t session_id,
int32_t media_error,
int32_t system_code) {
VLOG(4) << "PPB_ContentDecryptor_Private::SessionError()";
@@ -67,7 +67,7 @@ void SessionError(PP_Instance instance,
if (enter.failed())
return;
enter.functions()->SessionError(instance,
- reference_id,
+ session_id,
media_error,
system_code);
}
« no previous file with comments | « ppapi/proxy/ppp_content_decryptor_private_proxy.cc ('k') | ppapi/thunk/ppb_instance_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698