summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/ppb_instance_proxy.h
diff options
context:
space:
mode:
authortomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-03 22:53:48 +0000
committertomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-03 22:53:48 +0000
commit181d9c16af3887741c245400041a4c3796eca8b4 (patch)
tree0ab79d414a4dfc0a02da1a2ac05cd70779f0cdbd /ppapi/proxy/ppb_instance_proxy.h
parentbe83c65d3b440b53c9dce0105f4f72f4df5a2a64 (diff)
downloadchromium_src-181d9c16af3887741c245400041a4c3796eca8b4.zip
chromium_src-181d9c16af3887741c245400041a4c3796eca8b4.tar.gz
chromium_src-181d9c16af3887741c245400041a4c3796eca8b4.tar.bz2
Update PPB side of Pepper CDM API to support video decoding.
This adds the PPB half of the video decoding support changes. BUG=141780 TEST= Review URL: https://chromiumcodereview.appspot.com/10989069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159999 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppb_instance_proxy.h')
-rw-r--r--ppapi/proxy/ppb_instance_proxy.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ppapi/proxy/ppb_instance_proxy.h b/ppapi/proxy/ppb_instance_proxy.h
index 9a21185..61155b6d 100644
--- a/ppapi/proxy/ppb_instance_proxy.h
+++ b/ppapi/proxy/ppb_instance_proxy.h
@@ -24,6 +24,7 @@
#endif
struct PP_DecryptedBlockInfo;
+struct PP_DecryptedFrameInfo;
namespace ppapi {
namespace proxy {
@@ -137,7 +138,7 @@ class PPB_Instance_Proxy : public InterfaceProxy,
const PP_DecryptedBlockInfo* block_info) OVERRIDE;
virtual void DeliverFrame(PP_Instance instance,
PP_Resource decrypted_frame,
- const PP_DecryptedBlockInfo* block_info) OVERRIDE;
+ const PP_DecryptedFrameInfo* frame_info) OVERRIDE;
virtual void DeliverSamples(PP_Instance instance,
PP_Resource decrypted_samples,
const PP_DecryptedBlockInfo* block_info) OVERRIDE;