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 <map> | 6 #include <map> |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 1162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1173 // PPB_Testing. | 1173 // PPB_Testing. |
1174 IPC_SYNC_MESSAGE_ROUTED3_1( | 1174 IPC_SYNC_MESSAGE_ROUTED3_1( |
1175 PpapiHostMsg_PPBTesting_ReadImageData, | 1175 PpapiHostMsg_PPBTesting_ReadImageData, |
1176 ppapi::HostResource /* device_context_2d */, | 1176 ppapi::HostResource /* device_context_2d */, |
1177 ppapi::HostResource /* image */, | 1177 ppapi::HostResource /* image */, |
1178 PP_Point /* top_left */, | 1178 PP_Point /* top_left */, |
1179 PP_Bool /* result */) | 1179 PP_Bool /* result */) |
1180 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, | 1180 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, |
1181 PP_Instance /* instance */, | 1181 PP_Instance /* instance */, |
1182 uint32 /* result */) | 1182 uint32 /* result */) |
1183 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBTesting_SimulateInputEvent, | 1183 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTesting_SimulateInputEvent, |
1184 PP_Instance /* instance */, | 1184 PP_Instance /* instance */, |
1185 ppapi::InputEventData /* input_event */) | 1185 ppapi::InputEventData /* input_event */) |
1186 IPC_SYNC_MESSAGE_ROUTED1_0( | 1186 IPC_SYNC_MESSAGE_ROUTED1_0( |
1187 PpapiHostMsg_PPBTesting_SetMinimumArrayBufferSizeForShmem, | 1187 PpapiHostMsg_PPBTesting_SetMinimumArrayBufferSizeForShmem, |
1188 uint32_t /* threshold */) | 1188 uint32_t /* threshold */) |
1189 | 1189 |
1190 #if !defined(OS_NACL) && !defined(NACL_WIN64) | 1190 #if !defined(OS_NACL) && !defined(NACL_WIN64) |
1191 | 1191 |
1192 // PPB_VideoDecoder_Dev. | 1192 // PPB_VideoDecoder_Dev. |
1193 // (Messages from plugin to renderer.) | 1193 // (Messages from plugin to renderer.) |
1194 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVideoDecoder_Create, | 1194 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVideoDecoder_Create, |
1195 PP_Instance /* instance */, | 1195 PP_Instance /* instance */, |
(...skipping 1074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2270 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2270 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2271 PP_TalkPermission /* permission */) | 2271 PP_TalkPermission /* permission */) |
2272 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2272 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2273 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2273 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2274 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2274 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2275 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2275 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2276 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2276 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2277 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2277 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2278 | 2278 |
2279 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2279 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |