OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 gfx::Point /* screen_pt */) | 303 gfx::Point /* screen_pt */) |
304 IPC_MESSAGE_ROUTED0(ViewMsg_DragTargetDragLeave) | 304 IPC_MESSAGE_ROUTED0(ViewMsg_DragTargetDragLeave) |
305 IPC_MESSAGE_ROUTED2(ViewMsg_DragTargetDrop, | 305 IPC_MESSAGE_ROUTED2(ViewMsg_DragTargetDrop, |
306 gfx::Point /* client_pt */, | 306 gfx::Point /* client_pt */, |
307 gfx::Point /* screen_pt */) | 307 gfx::Point /* screen_pt */) |
308 | 308 |
309 IPC_MESSAGE_ROUTED1(ViewMsg_UploadFile, ViewMsg_UploadFile_Params) | 309 IPC_MESSAGE_ROUTED1(ViewMsg_UploadFile, ViewMsg_UploadFile_Params) |
310 | 310 |
311 // Notifies the renderer of updates in mouse position of an in-progress | 311 // Notifies the renderer of updates in mouse position of an in-progress |
312 // drag. if |ended| is true, then the user has ended the drag operation. | 312 // drag. if |ended| is true, then the user has ended the drag operation. |
313 IPC_MESSAGE_ROUTED3(ViewMsg_DragSourceEndedOrMoved, | 313 IPC_MESSAGE_ROUTED4(ViewMsg_DragSourceEndedOrMoved, |
314 gfx::Point /* client_pt */, | 314 gfx::Point /* client_pt */, |
315 gfx::Point /* screen_pt */, | 315 gfx::Point /* screen_pt */, |
316 bool /* ended */) | 316 bool /* ended */, |
| 317 bool /* cancelled */) |
317 | 318 |
318 // Notifies the renderer that the system DoDragDrop call has ended. | 319 // Notifies the renderer that the system DoDragDrop call has ended. |
319 IPC_MESSAGE_ROUTED0(ViewMsg_DragSourceSystemDragEnded) | 320 IPC_MESSAGE_ROUTED0(ViewMsg_DragSourceSystemDragEnded) |
320 | 321 |
321 // Used to tell a render view whether it should expose various bindings | 322 // Used to tell a render view whether it should expose various bindings |
322 // that allow JS content extended privileges. See BindingsPolicy for valid | 323 // that allow JS content extended privileges. See BindingsPolicy for valid |
323 // flag values. | 324 // flag values. |
324 IPC_MESSAGE_ROUTED1(ViewMsg_AllowBindings, | 325 IPC_MESSAGE_ROUTED1(ViewMsg_AllowBindings, |
325 int /* enabled_bindings_flags */) | 326 int /* enabled_bindings_flags */) |
326 | 327 |
(...skipping 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1463 // web resource. |error_message| is a user-readable explanation of what | 1464 // web resource. |error_message| is a user-readable explanation of what |
1464 // went wrong. | 1465 // went wrong. |
1465 IPC_MESSAGE_CONTROL1(UtilityHostMsg_UnpackWebResource_Failed, | 1466 IPC_MESSAGE_CONTROL1(UtilityHostMsg_UnpackWebResource_Failed, |
1466 std::string /* error_message, if any */) | 1467 std::string /* error_message, if any */) |
1467 | 1468 |
1468 // Sent by the renderer process to acknowledge receipt of a | 1469 // Sent by the renderer process to acknowledge receipt of a |
1469 // ViewMsg_CSSInsertRequest message and css has been inserted into the frame. | 1470 // ViewMsg_CSSInsertRequest message and css has been inserted into the frame. |
1470 IPC_MESSAGE_ROUTED0(ViewHostMsg_OnCSSInserted) | 1471 IPC_MESSAGE_ROUTED0(ViewHostMsg_OnCSSInserted) |
1471 | 1472 |
1472 IPC_END_MESSAGES(ViewHost) | 1473 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |