Chromium Code Reviews| Index: ppapi/api/private/pp_content_decryptor.idl |
| diff --git a/ppapi/api/private/pp_content_decryptor.idl b/ppapi/api/private/pp_content_decryptor.idl |
| index aba404f8bb414414d6630a170631a64dead10eb8..94b9cc3c132bd62e25b59fb0af071f0f2ef5dae7 100644 |
| --- a/ppapi/api/private/pp_content_decryptor.idl |
| +++ b/ppapi/api/private/pp_content_decryptor.idl |
| @@ -361,3 +361,16 @@ enum PP_DecryptorStreamType { |
| PP_DECRYPTORSTREAMTYPE_AUDIO = 0, |
| PP_DECRYPTORSTREAMTYPE_VIDEO = 1 |
| }; |
| + |
| +/** |
| + * <code>PP_KeySystemFlags</code> contains additional information for the key |
|
ddorwin
2013/09/18 21:26:53
nit: maybe "for CDM initialization". Same with the
jrummell
2013/09/19 00:37:28
Done.
|
| + * system. |
| + */ |
| +[assert_size(4)] |
| +struct PP_KeySystemFlags { |
| + /** |
| + * Indicates if the underlying host platform can be challenged; |
| + * i.e., verified as a trusted platform. |
| + */ |
| + PP_Bool can_challenge_platform; |
|
DaleCurtis
2013/09/18 21:29:30
FYI, dmichael@ I'm going to rip out the CanChallen
dmichael (off chromium)
2013/09/18 22:52:32
FWIW, if you're invoking from a background thread,
|
| +}; |