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

Unified Diff: ppapi/api/private/pp_content_decryptor.idl

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/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,
+};

Powered by Google App Engine
This is Rietveld 408576698