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

Unified Diff: ppapi/c/private/ppp_content_decryptor_private.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/c/private/ppb_content_decryptor_private.h ('k') | ppapi/cpp/private/content_decryptor_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/private/ppp_content_decryptor_private.h
diff --git a/ppapi/c/private/ppp_content_decryptor_private.h b/ppapi/c/private/ppp_content_decryptor_private.h
index 1873abcd6d5e3fb75f6534b8583dc666bbd3a644..27d172d7e73ddcbe747e61bb0d31117707bf2ebf 100644
--- a/ppapi/c/private/ppp_content_decryptor_private.h
+++ b/ppapi/c/private/ppp_content_decryptor_private.h
@@ -4,7 +4,7 @@
*/
/* From private/ppp_content_decryptor_private.idl,
- * modified Wed Nov 27 15:42:55 2013.
+ * modified Tue Dec 3 17:05:10 2013.
*/
#ifndef PPAPI_C_PRIVATE_PPP_CONTENT_DECRYPTOR_PRIVATE_H_
@@ -60,7 +60,7 @@ struct PPP_ContentDecryptor_Private_0_9 {
* browser by the CDM via <code>SessionCreated()</code> on the
* <code>PPB_ContentDecryptor_Private</code> interface.
*
- * @param[in] reference_id A reference for the session for which a session
+ * @param[in] session_id A reference for the session for which a session
* should be generated.
*
* @param[in] type A <code>PP_Var</code> of type
@@ -71,7 +71,7 @@ struct PPP_ContentDecryptor_Private_0_9 {
* initialization data.
*/
void (*CreateSession)(PP_Instance instance,
- uint32_t reference_id,
+ uint32_t session_id,
struct PP_Var type,
struct PP_Var init_data);
/**
@@ -86,22 +86,22 @@ struct PPP_ContentDecryptor_Private_0_9 {
* <code>PPB_ContentDecryptor_Private</code> interface, and the browser
* must notify the web application.
*
- * @param[in] reference_id A reference for the session to update.
+ * @param[in] session_id A reference for the session to update.
*
* @param[in] response A <code>PP_Var</code> of type
* <code>PP_VARTYPE_ARRAYBUFFER</code> containing the license or other
* message for the given session ID.
*/
void (*UpdateSession)(PP_Instance instance,
- uint32_t reference_id,
+ uint32_t session_id,
struct PP_Var response);
/**
* Release the specified session and related resources.
*
- * @param[in] reference_id A reference for the session that should be
+ * @param[in] session_id A reference for the session that should be
* released.
*/
- void (*ReleaseSession)(PP_Instance instance, uint32_t reference_id);
+ void (*ReleaseSession)(PP_Instance instance, uint32_t session_id);
/**
* Decrypts the block and returns the unencrypted block via
* <code>DeliverBlock()</code> on the
« no previous file with comments | « ppapi/c/private/ppb_content_decryptor_private.h ('k') | ppapi/cpp/private/content_decryptor_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698