Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(516)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 704913002: PPAPI: Make GetProxiedInterface not re-enter the plugin (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Oops, make SimulateInputEvent async again Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/proxy/host_dispatcher.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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)
OLDNEW
« no previous file with comments | « ppapi/proxy/host_dispatcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698