| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 1426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1437 std::vector<webkit_glue::PasswordForm> /* forms */) | 1437 std::vector<webkit_glue::PasswordForm> /* forms */) |
| 1438 | 1438 |
| 1439 // Notification that a form has been submitted. The user hit the button. | 1439 // Notification that a form has been submitted. The user hit the button. |
| 1440 IPC_MESSAGE_ROUTED1(ViewHostMsg_FormFieldValuesSubmitted, | 1440 IPC_MESSAGE_ROUTED1(ViewHostMsg_FormFieldValuesSubmitted, |
| 1441 webkit_glue::FormFieldValues /* form */) | 1441 webkit_glue::FormFieldValues /* form */) |
| 1442 | 1442 |
| 1443 // Used to tell the parent the user started dragging in the content area. The | 1443 // Used to tell the parent the user started dragging in the content area. The |
| 1444 // WebDropData struct contains contextual information about the pieces of the | 1444 // WebDropData struct contains contextual information about the pieces of the |
| 1445 // page the user dragged. The parent uses this notification to initiate a | 1445 // page the user dragged. The parent uses this notification to initiate a |
| 1446 // drag session at the OS level. | 1446 // drag session at the OS level. |
| 1447 IPC_MESSAGE_ROUTED2(ViewHostMsg_StartDragging, | 1447 IPC_MESSAGE_ROUTED4(ViewHostMsg_StartDragging, |
| 1448 WebDropData /* drop_data */, | 1448 WebDropData /* drop_data */, |
| 1449 WebKit::WebDragOperationsMask /* ops_allowed */) | 1449 WebKit::WebDragOperationsMask /* ops_allowed */, |
| 1450 SkBitmap /* image */, |
| 1451 gfx::Point /* image_offset */) |
| 1450 | 1452 |
| 1451 // The page wants to update the mouse cursor during a drag & drop operation. | 1453 // The page wants to update the mouse cursor during a drag & drop operation. |
| 1452 // |is_drop_target| is true if the mouse is over a valid drop target. | 1454 // |is_drop_target| is true if the mouse is over a valid drop target. |
| 1453 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateDragCursor, | 1455 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateDragCursor, |
| 1454 WebKit::WebDragOperation /* drag_operation */) | 1456 WebKit::WebDragOperation /* drag_operation */) |
| 1455 | 1457 |
| 1456 // Tells the browser to move the focus to the next (previous if reverse is | 1458 // Tells the browser to move the focus to the next (previous if reverse is |
| 1457 // true) focusable element. | 1459 // true) focusable element. |
| 1458 IPC_MESSAGE_ROUTED1(ViewHostMsg_TakeFocus, bool /* reverse */) | 1460 IPC_MESSAGE_ROUTED1(ViewHostMsg_TakeFocus, bool /* reverse */) |
| 1459 | 1461 |
| (...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2267 int /* render_view_id */, | 2269 int /* render_view_id */, |
| 2268 int /* bridge_id */) | 2270 int /* bridge_id */) |
| 2269 | 2271 |
| 2270 // The |render_view_id| and |bridge_id| requests Geolocation service to | 2272 // The |render_view_id| and |bridge_id| requests Geolocation service to |
| 2271 // resume. | 2273 // resume. |
| 2272 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 2274 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, |
| 2273 int /* render_view_id */, | 2275 int /* render_view_id */, |
| 2274 int /* bridge_id */) | 2276 int /* bridge_id */) |
| 2275 | 2277 |
| 2276 IPC_END_MESSAGES(ViewHost) | 2278 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |