Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Unified Diff: chrome/browser/tab_contents/web_drag_source_win.h

Issue 6250014: Move more dnd related files to ui/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/tab_contents/web_drag_source_win.h
===================================================================
--- chrome/browser/tab_contents/web_drag_source_win.h (revision 71798)
+++ chrome/browser/tab_contents/web_drag_source_win.h (working copy)
@@ -6,12 +6,12 @@
#define CHROME_BROWSER_TAB_CONTENTS_WEB_DRAG_SOURCE_WIN_H_
#pragma once
-#include "app/win/drag_source.h"
#include "base/basictypes.h"
#include "chrome/common/notification_observer.h"
#include "chrome/common/notification_registrar.h"
#include "gfx/native_widget_types.h"
#include "gfx/point.h"
+#include "ui/base/dragdrop/drag_source.h"
class RenderViewHost;
class TabContents;
@@ -20,7 +20,7 @@
// by an active drag-drop operation as the user mouses over other drop targets
// on their system. This object tells Windows whether or not the drag should
// continue, and supplies the appropriate cursors.
-class WebDragSource : public app::win::DragSource,
+class WebDragSource : public ui::DragSource,
public NotificationObserver {
public:
// Create a new DragSource for a given HWND and TabContents.
@@ -35,7 +35,7 @@
void set_effect(DWORD effect) { effect_ = effect; }
protected:
- // app::win::DragSource
+ // ui::DragSource
virtual void OnDragSourceCancel();
virtual void OnDragSourceDrop();
virtual void OnDragSourceMove();
« no previous file with comments | « chrome/browser/tab_contents/web_drag_dest_gtk.cc ('k') | chrome/browser/tab_contents/web_drag_source_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698