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

Unified Diff: ppapi/c/private/pp_content_decryptor.h

Issue 24192004: Changes to the EME Pepper API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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
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_ */

Powered by Google App Engine
This is Rietveld 408576698