diff options
Diffstat (limited to 'chrome/browser/tab_contents/web_drag_source.cc')
-rw-r--r-- | chrome/browser/tab_contents/web_drag_source.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/tab_contents/web_drag_source.cc b/chrome/browser/tab_contents/web_drag_source.cc index 0abf968..d61f3ba2 100644 --- a/chrome/browser/tab_contents/web_drag_source.cc +++ b/chrome/browser/tab_contents/web_drag_source.cc @@ -48,8 +48,8 @@ void WebDragSource::OnDragSourceCancel() { gfx::Point client; gfx::Point screen; GetCursorPositions(source_wnd_, &client, &screen); - render_view_host_->DragSourceEndedAt(client.x(), client.y(), - screen.x(), screen.y()); + render_view_host_->DragSourceCancelledAt(client.x(), client.y(), + screen.x(), screen.y()); } void WebDragSource::OnDragSourceDrop() { |