diff options
author | tomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-17 00:18:43 +0000 |
---|---|---|
committer | tomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-17 00:18:43 +0000 |
commit | e5aeef0767ea5676d3c7a512f74d350d4c298b1d (patch) | |
tree | e4f98de266c46fac108dd80a25cbefc28898f05e /ppapi/proxy/serialized_structs.h | |
parent | 7831d657839f81c88af9f7a7257870b2e7ce0e0d (diff) | |
download | chromium_src-e5aeef0767ea5676d3c7a512f74d350d4c298b1d.zip chromium_src-e5aeef0767ea5676d3c7a512f74d350d4c298b1d.tar.gz chromium_src-e5aeef0767ea5676d3c7a512f74d350d4c298b1d.tar.bz2 |
Add PPAPI decryptor implementation.
BUG=138139
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10827280
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152004 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/serialized_structs.h')
-rw-r--r-- | ppapi/proxy/serialized_structs.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ppapi/proxy/serialized_structs.h b/ppapi/proxy/serialized_structs.h index 6bb0da0..3174449 100644 --- a/ppapi/proxy/serialized_structs.h +++ b/ppapi/proxy/serialized_structs.h @@ -101,6 +101,14 @@ struct PPPVideoCapture_Buffer { base::SharedMemoryHandle handle; }; +// TODO(tomfinegan): This is identical to PPPVideoCapture_Buffer, maybe replace +// both with a single type? +struct PPPDecryptor_Buffer { + ppapi::HostResource resource; + uint32_t size; + base::SharedMemoryHandle handle; +}; + #if defined(OS_WIN) typedef HANDLE ImageHandle; #elif defined(OS_MACOSX) || defined(OS_ANDROID) |