Index: chrome/browser/tab_contents/tab_contents_view_gtk.cc |
=================================================================== |
--- chrome/browser/tab_contents/tab_contents_view_gtk.cc (revision 41876) |
+++ chrome/browser/tab_contents/tab_contents_view_gtk.cc (working copy) |
@@ -323,10 +323,13 @@ |
// Render view DnD ------------------------------------------------------------- |
void TabContentsViewGtk::StartDragging(const WebDropData& drop_data, |
- WebDragOperationsMask ops) { |
+ WebDragOperationsMask ops, |
+ const SkBitmap& image, |
+ const gfx::Point& image_offset) { |
DCHECK(GetContentNativeView()); |
- drag_source_->StartDragging(drop_data, &last_mouse_down_); |
+ drag_source_->StartDragging(drop_data, &last_mouse_down_, image, |
+ image_offset); |
// TODO(snej): Make use of the WebDragOperationsMask somehow |
} |