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 1844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1855 ppapi::HostResource /* image_data */, | 1855 ppapi::HostResource /* image_data */, |
1856 PP_TimeTicks /* timestamp */) | 1856 PP_TimeTicks /* timestamp */) |
1857 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDestination_Close) | 1857 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDestination_Close) |
1858 | 1858 |
1859 // VideoSource Private. | 1859 // VideoSource Private. |
1860 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Create) | 1860 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Create) |
1861 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoSource_Open, | 1861 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoSource_Open, |
1862 std::string /* stream_url */) | 1862 std::string /* stream_url */) |
1863 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) | 1863 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) |
1864 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) | 1864 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) |
1865 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_VideoSource_GetFrameReply, | 1865 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply, |
1866 ppapi::HostResource /* image_data */, | 1866 ppapi::HostResource /* resource_id */, |
1867 std::string /* image_data_desc */, | |
bbudge
2013/05/09 21:40:25
We're using string to marshal a C struct from the
| |
1868 int /* fd */, | |
1867 PP_TimeTicks /* timestamp */) | 1869 PP_TimeTicks /* timestamp */) |
1868 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) | 1870 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) |
1869 | 1871 |
1870 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1872 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |