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 1121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1132 ppapi::HostResource /* device_context_2d */, | 1132 ppapi::HostResource /* device_context_2d */, |
1133 ppapi::HostResource /* image */, | 1133 ppapi::HostResource /* image */, |
1134 PP_Point /* top_left */, | 1134 PP_Point /* top_left */, |
1135 PP_Bool /* result */) | 1135 PP_Bool /* result */) |
1136 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, | 1136 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, |
1137 PP_Instance /* instance */, | 1137 PP_Instance /* instance */, |
1138 uint32 /* result */) | 1138 uint32 /* result */) |
1139 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTesting_SimulateInputEvent, | 1139 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTesting_SimulateInputEvent, |
1140 PP_Instance /* instance */, | 1140 PP_Instance /* instance */, |
1141 ppapi::InputEventData /* input_event */) | 1141 ppapi::InputEventData /* input_event */) |
1142 IPC_SYNC_MESSAGE_ROUTED1_0( | |
1143 PpapiHostMsg_PPBTesting_SetMinimumArrayBufferSizeForShmem, | |
1144 uint32_t /* threshhold */) | |
teravest
2013/04/18 20:15:04
threshold
raymes
2013/04/18 20:29:55
Done.
| |
1142 | 1145 |
1143 #if !defined(OS_NACL) && !defined(NACL_WIN64) | 1146 #if !defined(OS_NACL) && !defined(NACL_WIN64) |
1144 | 1147 |
1145 // PPB_VideoDecoder. | 1148 // PPB_VideoDecoder. |
1146 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVideoDecoder_Create, | 1149 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVideoDecoder_Create, |
1147 PP_Instance /* instance */, | 1150 PP_Instance /* instance */, |
1148 ppapi::HostResource /* context */, | 1151 ppapi::HostResource /* context */, |
1149 PP_VideoDecoder_Profile /* profile */, | 1152 PP_VideoDecoder_Profile /* profile */, |
1150 ppapi::HostResource /* result */) | 1153 ppapi::HostResource /* result */) |
1151 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBVideoDecoder_Decode, | 1154 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBVideoDecoder_Decode, |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1818 std::vector<ppapi::HostResource> /* buffers */, | 1821 std::vector<ppapi::HostResource> /* buffers */, |
1819 uint32_t /* buffer_size */) | 1822 uint32_t /* buffer_size */) |
1820 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 1823 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
1821 uint32_t /* status */) | 1824 uint32_t /* status */) |
1822 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 1825 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
1823 uint32_t /* error */) | 1826 uint32_t /* error */) |
1824 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 1827 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
1825 uint32_t /* buffer */) | 1828 uint32_t /* buffer */) |
1826 | 1829 |
1827 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1830 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |