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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 13771020: Add Pepper VideoReader and VideoWriter plumbing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, clean up some headers. Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppb_image_data_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Multiply-included message header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 1824 matching lines...) Expand 10 before | Expand all | Expand 10 after
1835 PP_VideoCaptureDeviceInfo_Dev /* info */, 1835 PP_VideoCaptureDeviceInfo_Dev /* info */,
1836 std::vector<ppapi::HostResource> /* buffers */, 1836 std::vector<ppapi::HostResource> /* buffers */,
1837 uint32_t /* buffer_size */) 1837 uint32_t /* buffer_size */)
1838 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 1838 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
1839 uint32_t /* status */) 1839 uint32_t /* status */)
1840 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 1840 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
1841 uint32_t /* error */) 1841 uint32_t /* error */)
1842 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 1842 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
1843 uint32_t /* buffer */) 1843 uint32_t /* buffer */)
1844 1844
1845 // MediaStream -----------------------------------------------------------------
1846
1847 // VideoDestination Private.
1848 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDestination_Create)
1849 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoDestination_Open,
1850 std::string /* stream_url */)
1851 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDestination_OpenReply)
1852 IPC_MESSAGE_CONTROL2(PpapiHostMsg_VideoDestination_PutFrame,
1853 ppapi::HostResource /* image_data */,
1854 PP_TimeTicks /* timestamp */)
1855 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDestination_Close)
1856
1857 // VideoSource Private.
1858 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Create)
1859 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoSource_Open,
1860 std::string /* stream_url */)
1861 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply)
1862 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame)
1863 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_VideoSource_GetFrameReply,
1864 ppapi::HostResource /* image_data */,
1865 PP_TimeTicks /* timestamp */)
1866 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close)
1867
1845 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1868 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppb_image_data_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698