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

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

Issue 24192004: Changes to the EME Pepper API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 months 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/ppb_content_decryptor_private.idl
diff --git a/ppapi/api/private/ppb_content_decryptor_private.idl b/ppapi/api/private/ppb_content_decryptor_private.idl
index 9a6422dfcea3ffe9c66f2fd48aa282b9c1ca1e24..8859448d68965129479ae9b56aeee7a2956a23f6 100644
--- a/ppapi/api/private/ppb_content_decryptor_private.idl
+++ b/ppapi/api/private/ppb_content_decryptor_private.idl
@@ -12,7 +12,7 @@
[generate_thunk]
label Chrome {
- M24 = 0.6
+ M31 = 0.7
};
/**
@@ -24,35 +24,6 @@ label Chrome {
*/
interface PPB_ContentDecryptor_Private {
/**
- * The decryptor requires a key that has not been provided.
- *
- * Sent when the decryptor encounters encrypted content, but it does not have
- * the key required to decrypt the data. The plugin will call this method in
- * response to a call to the <code>Decrypt()</code> method on the
- * <code>PPP_ContentDecryptor_Private<code> interface.
- *
- * The browser must notify the application that a key is needed, and, in
- * response, the web application must direct the browser to call
- * <code>AddKey()</code> on the <code>PPP_ContentDecryptor_Private</code>
- * interface.
- *
- * @param[in] key_system A <code>PP_Var</code> of type
- * <code>PP_VARTYPE_STRING</code> containing the name of the key system.
- *
- * @param[in] session_id A <code>PP_Var</code> of type
- * <code>PP_VARTYPE_STRING</code> containing the session ID.
- *
- * @param[in] init_data A <code>PP_Var</code> of type
- * <code>PP_VARTYPE_ARRAY_BUFFER</code> containing container-specific
- * initialization data.
- */
- void NeedKey(
- [in] PP_Instance instance,
- [in] PP_Var key_system,
- [in] PP_Var session_id,
- [in] PP_Var init_data);
-
- /**
* A key has been added as the result of a call to the <code>AddKey()</code>
* method on the <code>PPP_ContentDecryptor_Private</code> interface.
*

Powered by Google App Engine
This is Rietveld 408576698