diff options
author | noel.gordon@gmail.com <noel.gordon@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-08 08:23:17 +0000 |
---|---|---|
committer | noel.gordon@gmail.com <noel.gordon@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-08 08:23:17 +0000 |
commit | b3123ce43d0753023d44a56ee392d817ca5e1194 (patch) | |
tree | 61286bdb0b5d4ca3a25832e4b32ca79e237749ee /webkit/tools | |
parent | 031e360993087091690133336d68e6fff8087e0f (diff) | |
download | chromium_src-b3123ce43d0753023d44a56ee392d817ca5e1194.zip chromium_src-b3123ce43d0753023d44a56ee392d817ca5e1194.tar.gz chromium_src-b3123ce43d0753023d44a56ee392d817ca5e1194.tar.bz2 |
Remove identity from dragTargetDragEnter() call sites.
Chromium patch to update call sites to use the new function signature
added in https://bugs.webkit.org/show_bug.cgi?id=56875
BUG=77736
TEST=none
Review URL: http://codereview.chromium.org/6772001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80907 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools')
-rw-r--r-- | webkit/tools/test_shell/drop_delegate.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/tools/test_shell/drop_delegate.cc b/webkit/tools/test_shell/drop_delegate.cc index 247f38f..baf2648 100644 --- a/webkit/tools/test_shell/drop_delegate.cc +++ b/webkit/tools/test_shell/drop_delegate.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -29,7 +29,7 @@ DWORD TestDropDelegate::OnDragEnter(IDataObject* data_object, POINT client_pt = cursor_position; ScreenToClient(GetHWND(), &client_pt); WebDragOperation op = webview_->dragTargetDragEnter( - drop_data.ToDragData(), 0, // web drag identity, unused. + drop_data.ToDragData(), WebPoint(client_pt.x, client_pt.y), WebPoint(cursor_position.x, cursor_position.y), WebDragOperationCopy); |