summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/tab_contents_drag_source.h
diff options
context:
space:
mode:
authorestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-17 21:00:47 +0000
committerestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-17 21:00:47 +0000
commit49fd9da3932c3c6e94ca1d9f35c9c90106859128 (patch)
tree377f3f2849f762d608ec58d591bdcaa4401b4413 /chrome/browser/gtk/tab_contents_drag_source.h
parent3698f173be9c6bf67816ad7e1ec194dd83438cba (diff)
downloadchromium_src-49fd9da3932c3c6e94ca1d9f35c9c90106859128.zip
chromium_src-49fd9da3932c3c6e94ca1d9f35c9c90106859128.tar.gz
chromium_src-49fd9da3932c3c6e94ca1d9f35c9c90106859128.tar.bz2
Revert r41803 and r41799
BUG=38414 TEST=none TBR=jam Review URL: http://codereview.chromium.org/1039006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41876 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/tab_contents_drag_source.h')
-rw-r--r--chrome/browser/gtk/tab_contents_drag_source.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/chrome/browser/gtk/tab_contents_drag_source.h b/chrome/browser/gtk/tab_contents_drag_source.h
index 7740ee6..aa0216e 100644
--- a/chrome/browser/gtk/tab_contents_drag_source.h
+++ b/chrome/browser/gtk/tab_contents_drag_source.h
@@ -9,12 +9,10 @@
#include "base/basictypes.h"
#include "base/file_path.h"
-#include "base/gfx/point.h"
#include "base/message_loop.h"
#include "base/string16.h"
#include "gfx/native_widget_types.h"
#include "googleurl/src/gurl.h"
-#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/WebKit/WebKit/chromium/public/WebDragOperation.h"
class TabContents;
@@ -33,9 +31,7 @@ class TabContentsDragSource : public MessageLoopForUI::Observer {
// Starts a drag for the tab contents this TabContentsDragSource was
// created for.
void StartDragging(const WebDropData& drop_data,
- GdkEventButton* last_mouse_down,
- const SkBitmap& image,
- const gfx::Point& image_offset);
+ GdkEventButton* last_mouse_down);
// MessageLoop::Observer implementation:
virtual void WillProcessEvent(GdkEvent* event);
@@ -83,11 +79,6 @@ class TabContentsDragSource : public MessageLoopForUI::Observer {
// view). Non-NULL iff there is a current drag.
scoped_ptr<WebDropData> drop_data_;
- // The image used for depicting the drag, and the offset between the cursor
- // and the top left pixel.
- SkBitmap drag_image_;
- gfx::Point image_offset_;
-
// The mime type for the file contents of the current drag (if any).
GdkAtom drag_file_mime_type_;