diff options
Diffstat (limited to 'content/browser/renderer_host/render_view_host_impl.cc')
-rw-r--r-- | content/browser/renderer_host/render_view_host_impl.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc index 30748c0..ad0bac3 100644 --- a/content/browser/renderer_host/render_view_host_impl.cc +++ b/content/browser/renderer_host/render_view_host_impl.cc @@ -1458,7 +1458,8 @@ void RenderViewHostImpl::OnMsgStartDragging( const WebDropData& drop_data, WebDragOperationsMask drag_operations_mask, const SkBitmap& bitmap, - const gfx::Vector2d& bitmap_offset_in_dip) { + const gfx::Vector2d& bitmap_offset_in_dip, + const DragEventSourceInfo& event_info) { RenderViewHostDelegateView* view = delegate_->GetDelegateView(); if (!view) return; @@ -1491,7 +1492,7 @@ void RenderViewHostImpl::OnMsgStartDragging( ui::ScaleFactor scale_factor = GetScaleFactorForView(GetView()); gfx::ImageSkia image(gfx::ImageSkiaRep(bitmap, scale_factor)); view->StartDragging(filtered_data, drag_operations_mask, image, - bitmap_offset_in_dip); + bitmap_offset_in_dip, event_info); } void RenderViewHostImpl::OnUpdateDragCursor(WebDragOperation current_op) { |