| Index: ppapi/c/private/pp_content_decryptor.h
|
| diff --git a/ppapi/c/private/pp_content_decryptor.h b/ppapi/c/private/pp_content_decryptor.h
|
| index 43ea559f128f64d99f850515719d53f00b7cc0bb..7138d268723ec9676ed8e8104769d36950f2bb7c 100644
|
| --- a/ppapi/c/private/pp_content_decryptor.h
|
| +++ b/ppapi/c/private/pp_content_decryptor.h
|
| @@ -3,11 +3,12 @@
|
| * found in the LICENSE file.
|
| */
|
|
|
| -/* From private/pp_content_decryptor.idl modified Tue Dec 4 16:42:46 2012. */
|
| +/* From private/pp_content_decryptor.idl modified Wed Sep 18 13:06:35 2013. */
|
|
|
| #ifndef PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_
|
| #define PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_
|
|
|
| +#include "ppapi/c/pp_bool.h"
|
| #include "ppapi/c/pp_macros.h"
|
| #include "ppapi/c/pp_stdint.h"
|
|
|
| @@ -417,5 +418,25 @@ PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_DecryptorStreamType, 4);
|
| * @}
|
| */
|
|
|
| +/**
|
| + * @addtogroup Structs
|
| + * @{
|
| + */
|
| +/**
|
| + * <code>PP_KeySystemFlags</code> contains additional information for the key
|
| + * system.
|
| + */
|
| +struct PP_KeySystemFlags {
|
| + /**
|
| + * Indicates if the underlying host platform can be challenged;
|
| + * i.e., verified as a trusted platform.
|
| + */
|
| + PP_Bool can_challenge_platform;
|
| +};
|
| +PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_KeySystemFlags, 4);
|
| +/**
|
| + * @}
|
| + */
|
| +
|
| #endif /* PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_ */
|
|
|
|
|