OLD | NEW |
---|---|
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 Loading... | |
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 double /* timestamp */) | |
yzshen1
2013/05/01 23:18:33
optional, nit: Does it make sense to use PP_TimeTi
bbudge
2013/05/02 21:39:06
Done.
| |
1855 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDestination_PutFrameReply) | |
yzshen1
2013/05/01 23:18:33
This is not needed.
bbudge
2013/05/02 21:39:06
Done.
| |
1856 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDestination_Close) | |
1857 | |
1858 // VideoSource Private. | |
1859 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Create) | |
1860 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoSource_Open, | |
1861 std::string /* stream_url */) | |
1862 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) | |
1863 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) | |
1864 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_VideoSource_GetFrameReply, | |
1865 ppapi::HostResource /* image_data */, | |
1866 double /* timestamp */) | |
1867 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) | |
1868 | |
1845 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1869 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |