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

Unified Diff: Source/core/page/DragClient.h

Issue 16715002: Refactor WebCore::DragImage. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: merge upstream changes, some changes per jamesr Created 7 years, 6 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
« no previous file with comments | « Source/core/loader/EmptyClients.h ('k') | Source/core/page/DragController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/DragClient.h
diff --git a/Source/core/page/DragClient.h b/Source/core/page/DragClient.h
index d3e4d7ff2a2e09fb5ba279ca9cae946fe8b943bd..c8d1b2b378b2b5d17feaf211e9d0c148e5b78eb4 100644
--- a/Source/core/page/DragClient.h
+++ b/Source/core/page/DragClient.h
@@ -28,22 +28,22 @@
#define DragClient_h
#include "core/page/DragActions.h"
-#include "core/platform/DragImage.h"
-#include "core/platform/graphics/IntPoint.h"
namespace WebCore {
-
- class Clipboard;
- class DragData;
- class Frame;
-
- class DragClient {
- public:
- virtual DragDestinationAction actionMaskForDrag(DragData*) = 0;
- virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false) = 0;
- virtual ~DragClient() { }
- };
-
+
+class Clipboard;
+class DragData;
+class DragImage;
+class Frame;
+class IntPoint;
+
+class DragClient {
+public:
+ virtual DragDestinationAction actionMaskForDrag(DragData*) = 0;
+ virtual void startDrag(DragImage*, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false) = 0;
+ virtual ~DragClient() { }
+};
+
}
#endif // !DragClient_h
« no previous file with comments | « Source/core/loader/EmptyClients.h ('k') | Source/core/page/DragController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698