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

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

Issue 10895: Add Terminate() to the Process object, have RenderProcessHost use this to avo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/ipc_tests.cc ('k') | chrome/common/process_watcher.h » ('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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 // Updates the plugin location. For windowless plugins, windowless_buffer 123 // Updates the plugin location. For windowless plugins, windowless_buffer
124 // contains a buffer that the plugin draws into. background_buffer is used 124 // contains a buffer that the plugin draws into. background_buffer is used
125 // for transparent windowless plugins, and holds the background of the plugin 125 // for transparent windowless plugins, and holds the background of the plugin
126 // rectangle. 126 // rectangle.
127 IPC_MESSAGE_ROUTED6(PluginMsg_UpdateGeometry, 127 IPC_MESSAGE_ROUTED6(PluginMsg_UpdateGeometry,
128 gfx::Rect /* window_rect */, 128 gfx::Rect /* window_rect */,
129 gfx::Rect /* clip_rect */, 129 gfx::Rect /* clip_rect */,
130 std::vector<gfx::Rect> /* cutout_rects */, 130 std::vector<gfx::Rect> /* cutout_rects */,
131 bool /* visible */, 131 bool /* visible */,
132 SharedMemoryHandle /* windowless_buffer */, 132 base::SharedMemoryHandle /* windowless_buffer */,
133 SharedMemoryHandle /* background_buffer */) 133 base::SharedMemoryHandle /* background_buffer */)
134 134
135 IPC_SYNC_MESSAGE_ROUTED0_0(PluginMsg_SetFocus) 135 IPC_SYNC_MESSAGE_ROUTED0_0(PluginMsg_SetFocus)
136 136
137 IPC_SYNC_MESSAGE_ROUTED1_2(PluginMsg_HandleEvent, 137 IPC_SYNC_MESSAGE_ROUTED1_2(PluginMsg_HandleEvent,
138 NPEvent /* event */, 138 NPEvent /* event */,
139 bool /* handled */, 139 bool /* handled */,
140 WebCursor /* cursor type*/) 140 WebCursor /* cursor type*/)
141 141
142 IPC_SYNC_MESSAGE_ROUTED2_0(PluginMsg_WillSendRequest, 142 IPC_SYNC_MESSAGE_ROUTED2_0(PluginMsg_WillSendRequest,
143 int /* id */, 143 int /* id */,
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 std::string /* script */, 306 std::string /* script */,
307 bool /* popups_allowed */, 307 bool /* popups_allowed */,
308 NPVariant_Param /* result_param */, 308 NPVariant_Param /* result_param */,
309 bool /* result */) 309 bool /* result */)
310 310
311 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException, 311 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException,
312 std::string /* message */) 312 std::string /* message */)
313 313
314 IPC_END_MESSAGES(NPObject) 314 IPC_END_MESSAGES(NPObject)
315 315
OLDNEW
« no previous file with comments | « chrome/common/ipc_tests.cc ('k') | chrome/common/process_watcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698