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

Unified Diff: ppapi/thunk/ppb_instance_api.h

Issue 10854209: Modify the PPAPI CDM interface to pass more info. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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/thunk/ppb_instance_api.h
diff --git a/ppapi/thunk/ppb_instance_api.h b/ppapi/thunk/ppb_instance_api.h
index 1520e1367b710759f142018f9b3c1bd9010e0b7d..10868dde45685b1ac9a5d6580ab451b6cb08de16 100644
--- a/ppapi/thunk/ppb_instance_api.h
+++ b/ppapi/thunk/ppb_instance_api.h
@@ -27,6 +27,8 @@
#undef PostMessage
#endif
+struct PP_DecryptedBlockInfo;
+
namespace ppapi {
class TrackedCallback;
@@ -159,13 +161,13 @@ class PPB_Instance_API {
int32_t system_error) = 0;
virtual void DeliverBlock(PP_Instance instance,
PP_Resource decrypted_block,
- int32_t request_id) = 0;
+ const PP_DecryptedBlockInfo* block_info) = 0;
virtual void DeliverFrame(PP_Instance instance,
PP_Resource decrypted_frame,
- int32_t request_id) = 0;
+ const PP_DecryptedBlockInfo* block_info) = 0;
virtual void DeliverSamples(PP_Instance instance,
PP_Resource decrypted_samples,
- int32_t request_id) = 0;
+ const PP_DecryptedBlockInfo* block_info) = 0;
// URLUtil.
virtual PP_Var ResolveRelativeToDocument(

Powered by Google App Engine
This is Rietveld 408576698