| 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
|
|
|