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

Side by Side Diff: chrome/common/plugin_messages_internal.h

Issue 79020: linux (and some posix): multiprocess plugins compiling. (Closed)
Patch Set: rebased Created 11 years, 8 months 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 | « chrome/common/ipc_channel_proxy.cc ('k') | chrome/common/temp_scaffolding_stubs.cc » ('j') | 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #include "base/shared_memory.h" 5 #include "base/shared_memory.h"
6 #include "chrome/common/ipc_message_macros.h" 6 #include "chrome/common/ipc_message_macros.h"
7 #include "webkit/glue/webcursor.h" 7 #include "webkit/glue/webcursor.h"
8 8
9 //----------------------------------------------------------------------------- 9 //-----------------------------------------------------------------------------
10 // PluginProcess messages 10 // PluginProcess messages
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 IPC_SYNC_MESSAGE_ROUTED1_0(PluginMsg_DidFinishLoadWithReason, 136 IPC_SYNC_MESSAGE_ROUTED1_0(PluginMsg_DidFinishLoadWithReason,
137 int /* reason */) 137 int /* reason */)
138 138
139 // Updates the plugin location. For windowless plugins, windowless_buffer 139 // Updates the plugin location. For windowless plugins, windowless_buffer
140 // contains a buffer that the plugin draws into. background_buffer is used 140 // contains a buffer that the plugin draws into. background_buffer is used
141 // for transparent windowless plugins, and holds the background of the plugin 141 // for transparent windowless plugins, and holds the background of the plugin
142 // rectangle. 142 // rectangle.
143 IPC_MESSAGE_ROUTED4(PluginMsg_UpdateGeometry, 143 IPC_MESSAGE_ROUTED4(PluginMsg_UpdateGeometry,
144 gfx::Rect /* window_rect */, 144 gfx::Rect /* window_rect */,
145 gfx::Rect /* clip_rect */, 145 gfx::Rect /* clip_rect */,
146 base::SharedMemoryHandle /* windowless_buffer */, 146 TransportDIB::Id /* windowless_buffer */,
147 base::SharedMemoryHandle /* background_buffer */) 147 TransportDIB::Id /* background_buffer */)
148 148
149 IPC_SYNC_MESSAGE_ROUTED0_0(PluginMsg_SetFocus) 149 IPC_SYNC_MESSAGE_ROUTED0_0(PluginMsg_SetFocus)
150 150
151 IPC_SYNC_MESSAGE_ROUTED1_2(PluginMsg_HandleEvent, 151 IPC_SYNC_MESSAGE_ROUTED1_2(PluginMsg_HandleEvent,
152 NPEvent /* event */, 152 NPEvent /* event */,
153 bool /* handled */, 153 bool /* handled */,
154 WebCursor /* cursor type*/) 154 WebCursor /* cursor type*/)
155 155
156 IPC_SYNC_MESSAGE_ROUTED2_0(PluginMsg_WillSendRequest, 156 IPC_SYNC_MESSAGE_ROUTED2_0(PluginMsg_WillSendRequest,
157 int /* id */, 157 int /* id */,
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, 323 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate,
324 std::string /* script */, 324 std::string /* script */,
325 bool /* popups_allowed */, 325 bool /* popups_allowed */,
326 NPVariant_Param /* result_param */, 326 NPVariant_Param /* result_param */,
327 bool /* result */) 327 bool /* result */)
328 328
329 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException, 329 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException,
330 std::string /* message */) 330 std::string /* message */)
331 331
332 IPC_END_MESSAGES(NPObject) 332 IPC_END_MESSAGES(NPObject)
OLDNEW
« no previous file with comments | « chrome/common/ipc_channel_proxy.cc ('k') | chrome/common/temp_scaffolding_stubs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698