Chromium Code Reviews| Index: content/common/drag_messages.h |
| diff --git a/content/common/drag_messages.h b/content/common/drag_messages.h |
| index 730782bd18571d839691adb1f79ffd3a77e6863c..8c06757eeb285253c78428eacd1fc297c93a700a 100644 |
| --- a/content/common/drag_messages.h |
| +++ b/content/common/drag_messages.h |
| @@ -37,22 +37,25 @@ IPC_STRUCT_TRAITS_END() |
| // Messages sent from the browser to the renderer. |
| -IPC_MESSAGE_ROUTED4(DragMsg_TargetDragEnter, |
| +IPC_MESSAGE_ROUTED5(DragMsg_TargetDragEnter, |
| WebDropData /* drop_data */, |
| gfx::Point /* client_pt */, |
| gfx::Point /* screen_pt */, |
| - WebKit::WebDragOperationsMask /* ops_allowed */) |
| + WebKit::WebDragOperationsMask /* ops_allowed */, |
| + int /* key modifiers */) |
|
jam
2012/05/15 16:57:53
nit: key_modifiers. also below
varunjain
2012/05/15 23:03:39
Done.
|
| -IPC_MESSAGE_ROUTED3(DragMsg_TargetDragOver, |
| +IPC_MESSAGE_ROUTED4(DragMsg_TargetDragOver, |
| gfx::Point /* client_pt */, |
| gfx::Point /* screen_pt */, |
| - WebKit::WebDragOperationsMask /* ops_allowed */) |
| + WebKit::WebDragOperationsMask /* ops_allowed */, |
| + int /* key modifiers */) |
| IPC_MESSAGE_ROUTED0(DragMsg_TargetDragLeave) |
| -IPC_MESSAGE_ROUTED2(DragMsg_TargetDrop, |
| +IPC_MESSAGE_ROUTED3(DragMsg_TargetDrop, |
| gfx::Point /* client_pt */, |
| - gfx::Point /* screen_pt */) |
| + gfx::Point /* screen_pt */, |
| + int /* key modifiers */) |
| // Notifies the renderer of updates in mouse position of an in-progress |
| // drag. if |ended| is true, then the user has ended the drag operation. |