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

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

Issue 1037008: Retry r41799:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 9 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 | Annotate | Revision Log
OLDNEW
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 1429 matching lines...) Expand 10 before | Expand all | Expand 10 after
1440 std::vector<webkit_glue::PasswordForm> /* forms */) 1440 std::vector<webkit_glue::PasswordForm> /* forms */)
1441 1441
1442 // Notification that a form has been submitted. The user hit the button. 1442 // Notification that a form has been submitted. The user hit the button.
1443 IPC_MESSAGE_ROUTED1(ViewHostMsg_FormFieldValuesSubmitted, 1443 IPC_MESSAGE_ROUTED1(ViewHostMsg_FormFieldValuesSubmitted,
1444 webkit_glue::FormFieldValues /* form */) 1444 webkit_glue::FormFieldValues /* form */)
1445 1445
1446 // Used to tell the parent the user started dragging in the content area. The 1446 // Used to tell the parent the user started dragging in the content area. The
1447 // WebDropData struct contains contextual information about the pieces of the 1447 // WebDropData struct contains contextual information about the pieces of the
1448 // page the user dragged. The parent uses this notification to initiate a 1448 // page the user dragged. The parent uses this notification to initiate a
1449 // drag session at the OS level. 1449 // drag session at the OS level.
1450 IPC_MESSAGE_ROUTED2(ViewHostMsg_StartDragging, 1450 IPC_MESSAGE_ROUTED4(ViewHostMsg_StartDragging,
1451 WebDropData /* drop_data */, 1451 WebDropData /* drop_data */,
1452 WebKit::WebDragOperationsMask /* ops_allowed */) 1452 WebKit::WebDragOperationsMask /* ops_allowed */,
1453 SkBitmap /* image */,
1454 gfx::Point /* image_offset */)
1453 1455
1454 // The page wants to update the mouse cursor during a drag & drop operation. 1456 // The page wants to update the mouse cursor during a drag & drop operation.
1455 // |is_drop_target| is true if the mouse is over a valid drop target. 1457 // |is_drop_target| is true if the mouse is over a valid drop target.
1456 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateDragCursor, 1458 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateDragCursor,
1457 WebKit::WebDragOperation /* drag_operation */) 1459 WebKit::WebDragOperation /* drag_operation */)
1458 1460
1459 // Tells the browser to move the focus to the next (previous if reverse is 1461 // Tells the browser to move the focus to the next (previous if reverse is
1460 // true) focusable element. 1462 // true) focusable element.
1461 IPC_MESSAGE_ROUTED1(ViewHostMsg_TakeFocus, bool /* reverse */) 1463 IPC_MESSAGE_ROUTED1(ViewHostMsg_TakeFocus, bool /* reverse */)
1462 1464
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
2271 int /* render_view_id */, 2273 int /* render_view_id */,
2272 int /* bridge_id */) 2274 int /* bridge_id */)
2273 2275
2274 // The |render_view_id| and |bridge_id| requests Geolocation service to 2276 // The |render_view_id| and |bridge_id| requests Geolocation service to
2275 // resume. 2277 // resume.
2276 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, 2278 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume,
2277 int /* render_view_id */, 2279 int /* render_view_id */,
2278 int /* bridge_id */) 2280 int /* bridge_id */)
2279 2281
2280 IPC_END_MESSAGES(ViewHost) 2282 IPC_END_MESSAGES(ViewHost)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698