diff options
author | tomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-03 22:53:48 +0000 |
---|---|---|
committer | tomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-03 22:53:48 +0000 |
commit | 181d9c16af3887741c245400041a4c3796eca8b4 (patch) | |
tree | 0ab79d414a4dfc0a02da1a2ac05cd70779f0cdbd /ppapi/proxy/ppb_instance_proxy.h | |
parent | be83c65d3b440b53c9dce0105f4f72f4df5a2a64 (diff) | |
download | chromium_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.h | 3 |
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; |