Chromium Code Reviews| 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..5fdf0c4baf4f8b75a8bcce53e631315a31a04659 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 Instruct the CDM to allow using a |
|
ddorwin
2015/03/06 21:42:54
Inform the CDM that it may use a...
This is more
sandersd (OOO until July 31)
2015/03/06 22:36:58
Done.
|
| + * distinctive identifier. |
| + * @param[in] allow_perisistent_state Instruct the CDM to allow storing |
|
jrummell
2015/03/06 21:40:47
s/peris/pers/
sandersd (OOO until July 31)
2015/03/06 22:36:58
Done.
|
| + * 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); |
|
dmichael (off chromium)
2015/03/06 22:32:31
Are we trusting the plugin to do the right thing,
sandersd (OOO until July 31)
2015/03/06 22:50:52
I've just updated the CL description to explain th
|
| /** |
| * Provides a server certificate to be used to encrypt messages to the |