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

Unified Diff: ppapi/api/private/ppp_content_decryptor_private.idl

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
Index: ppapi/api/private/ppp_content_decryptor_private.idl
diff --git a/ppapi/api/private/ppp_content_decryptor_private.idl b/ppapi/api/private/ppp_content_decryptor_private.idl
index 11cffe008593cc1140457cc352e567d24e6df22a..b943efe4a8bde73f787a59bf42cb976db832f519 100644
--- a/ppapi/api/private/ppp_content_decryptor_private.idl
+++ b/ppapi/api/private/ppp_content_decryptor_private.idl
@@ -40,7 +40,7 @@ interface PPP_ContentDecryptor_Private {
* 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
@@ -52,7 +52,7 @@ interface PPP_ContentDecryptor_Private {
*/
void CreateSession(
[in] PP_Instance instance,
- [in] uint32_t reference_id,
+ [in] uint32_t session_id,
[in] PP_Var type,
[in] PP_Var init_data);
@@ -68,7 +68,7 @@ interface PPP_ContentDecryptor_Private {
* <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
@@ -76,18 +76,18 @@ interface PPP_ContentDecryptor_Private {
*/
void UpdateSession(
[in] PP_Instance instance,
- [in] uint32_t reference_id,
+ [in] uint32_t session_id,
[in] 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(
[in] PP_Instance instance,
- [in] uint32_t reference_id);
+ [in] uint32_t session_id);
/**
* Decrypts the block and returns the unencrypted block via
« no previous file with comments | « ppapi/api/private/ppb_content_decryptor_private.idl ('k') | ppapi/c/private/ppb_content_decryptor_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698