summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/serialized_structs.h
diff options
context:
space:
mode:
authortomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-17 00:18:43 +0000
committertomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-17 00:18:43 +0000
commite5aeef0767ea5676d3c7a512f74d350d4c298b1d (patch)
treee4f98de266c46fac108dd80a25cbefc28898f05e /ppapi/proxy/serialized_structs.h
parent7831d657839f81c88af9f7a7257870b2e7ce0e0d (diff)
downloadchromium_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.h8
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)