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

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

Issue 985113003: Block platform verification and file IO in the CDM adapter if the CDM configuration disallows them. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix DCHECK types. Created 5 years, 9 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
« no previous file with comments | « media/cdm/proxy_decryptor.cc ('k') | ppapi/c/pp_macros.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8f28960a423bbe4afce5318065b0be12aa62d1ac..77dcdc59606b0f2e8a60dd647f45f548a2e213f7 100644
--- a/ppapi/api/private/ppp_content_decryptor_private.idl
+++ b/ppapi/api/private/ppp_content_decryptor_private.idl
@@ -9,7 +9,7 @@
* Decryption Modules, not normal plugins.
*/
label Chrome {
- M41 = 0.13
+ M43 = 0.14
};
/**
@@ -25,10 +25,16 @@ interface PPP_ContentDecryptor_Private {
*
* @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] allow_distinctive_identifier Inform the CDM that it may use a
+ * distinctive identifier.
+ * @param[in] allow_persistent_state Inform the CDM that it may use persistent
+ * state.
*/
void Initialize(
[in] PP_Instance instance,
- [in] PP_Var key_system);
+ [in] PP_Var key_system,
+ [in] PP_Bool allow_distinctive_identifier,
+ [in] PP_Bool allow_persistent_state);
/**
* Provides a server certificate to be used to encrypt messages to the
« no previous file with comments | « media/cdm/proxy_decryptor.cc ('k') | ppapi/c/pp_macros.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698