diff options
author | arv@google.com <arv@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-08 02:38:03 +0000 |
---|---|---|
committer | arv@google.com <arv@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-08 02:38:03 +0000 |
commit | 5f9ae6c55bb6cf325bcd85465a370d7fc32bd47a (patch) | |
tree | bb9b9e7c5ef78e47dafb968bea5491ca54d2965b /chrome/common | |
parent | 8f04ff93eba6678ed17b7157f805212d9438507b (diff) | |
download | chromium_src-5f9ae6c55bb6cf325bcd85465a370d7fc32bd47a.zip chromium_src-5f9ae6c55bb6cf325bcd85465a370d7fc32bd47a.tar.gz chromium_src-5f9ae6c55bb6cf325bcd85465a370d7fc32bd47a.tar.bz2 |
Make the cancelling of drag and drop match Safari for Windows. This is
a follow up CL to http://codereview.chromium.org/149038 as well as to
https://bugs.webkit.org/show_bug.cgi?id=26699
With this change we use DragOperationNone (instead of DragOperationCopy)
and NoButton (instead of LeftButton) when the user presses Escape.
BUG=12018
TEST=On the new new tab page drag one of the thumbnails out of the
window and press escape. The thumbnail should move back to its starting
position.
Review URL: http://codereview.chromium.org/149296
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20125 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/render_messages_internal.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index d6ff653..0f50867 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -310,10 +310,11 @@ IPC_BEGIN_MESSAGES(View) // 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. - IPC_MESSAGE_ROUTED3(ViewMsg_DragSourceEndedOrMoved, + IPC_MESSAGE_ROUTED4(ViewMsg_DragSourceEndedOrMoved, gfx::Point /* client_pt */, gfx::Point /* screen_pt */, - bool /* ended */) + bool /* ended */, + bool /* cancelled */) // Notifies the renderer that the system DoDragDrop call has ended. IPC_MESSAGE_ROUTED0(ViewMsg_DragSourceSystemDragEnded) |