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" |
11 #include "base/process.h" | 11 #include "base/process.h" |
12 #include "base/shared_memory.h" | 12 #include "base/shared_memory.h" |
13 #include "base/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "base/sync_socket.h" | 14 #include "base/sync_socket.h" |
15 #include "base/values.h" | 15 #include "base/values.h" |
16 #include "gpu/command_buffer/common/command_buffer.h" | 16 #include "gpu/command_buffer/common/command_buffer.h" |
17 #include "gpu/ipc/gpu_command_buffer_traits.h" | 17 #include "gpu/ipc/gpu_command_buffer_traits.h" |
18 #include "ipc/ipc_channel_handle.h" | 18 #include "ipc/ipc_channel_handle.h" |
19 #include "ipc/ipc_message_macros.h" | 19 #include "ipc/ipc_message_macros.h" |
20 #include "ipc/ipc_message_utils.h" | 20 #include "ipc/ipc_message_utils.h" |
21 #include "ipc/ipc_platform_file.h" | 21 #include "ipc/ipc_platform_file.h" |
22 #include "ppapi/c/dev/pp_video_capture_dev.h" | 22 #include "ppapi/c/dev/pp_video_capture_dev.h" |
23 #include "ppapi/c/dev/pp_video_dev.h" | 23 #include "ppapi/c/dev/pp_video_dev.h" |
(...skipping 1898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1922 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) | 1922 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) |
1923 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) | 1923 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) |
1924 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply, | 1924 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply, |
1925 ppapi::HostResource /* resource_id */, | 1925 ppapi::HostResource /* resource_id */, |
1926 PP_ImageDataDesc /* image_data_desc */, | 1926 PP_ImageDataDesc /* image_data_desc */, |
1927 int /* fd */, | 1927 int /* fd */, |
1928 PP_TimeTicks /* timestamp */) | 1928 PP_TimeTicks /* timestamp */) |
1929 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) | 1929 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) |
1930 | 1930 |
1931 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1931 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |