| Index: content/browser/renderer_host/render_widget_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
|
| index e840fa89c6edf6ab588edae9b4e3b70fa264e1c4..d5f2a617cc7ced2cc2b1211b1c57645ab9db3e88 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
| @@ -1373,8 +1373,9 @@ void RenderWidgetHostImpl::DragTargetDragOver(
|
| operations_allowed, key_modifiers));
|
| }
|
|
|
| -void RenderWidgetHostImpl::DragTargetDragLeave() {
|
| - Send(new DragMsg_TargetDragLeave(GetRoutingID()));
|
| +void RenderWidgetHostImpl::DragTargetDragLeave(const gfx::Point& client_point,
|
| + const gfx::Point& screen_point) {
|
| + Send(new DragMsg_TargetDragLeave(GetRoutingID(), client_point, screen_point));
|
| }
|
|
|
| void RenderWidgetHostImpl::DragTargetDrop(const DropData& drop_data,
|
|
|