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

Unified Diff: third_party/WebKit/Source/core/page/DragController.h

Issue 1888773003: Merge DragClientImpl into core. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missing file. Created 4 years, 8 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: third_party/WebKit/Source/core/page/DragController.h
diff --git a/third_party/WebKit/Source/core/page/DragController.h b/third_party/WebKit/Source/core/page/DragController.h
index e318b195b5ecbf5954bc72760f0282e2338330ec..7e7bd42fd1517e6522951b8d8e24a1d03e32ea8c 100644
--- a/third_party/WebKit/Source/core/page/DragController.h
+++ b/third_party/WebKit/Source/core/page/DragController.h
@@ -38,7 +38,6 @@ namespace blink {
class DataTransfer;
class Document;
-class DragClient;
class DragData;
class DragImage;
struct DragSession;
@@ -55,7 +54,7 @@ class CORE_EXPORT DragController final : public GarbageCollectedFinalized<DragCo
public:
~DragController();
- static DragController* create(Page*, DragClient*);
+ static DragController* create(Page*);
DragSession dragEntered(DragData*);
void dragExited(DragData*);
@@ -78,7 +77,7 @@ public:
static const int DragIconBottomInset;
private:
- DragController(Page*, DragClient*);
+ DragController(Page*);
dcheng 2016/04/15 07:20:34 Nit: explicit
DispatchEventResult dispatchTextInputEventFor(LocalFrame*, DragData*);
bool canProcessDrag(DragData*);
@@ -95,10 +94,8 @@ private:
void mouseMovedIntoDocument(Document*);
void doSystemDrag(DragImage*, const IntPoint& dragLocation, const IntPoint& dragOrigin, DataTransfer*, LocalFrame*, bool forLink);
- void cleanupAfterSystemDrag();
Member<Page> m_page;
- DragClient* m_client;
Member<Document> m_documentUnderMouse; // The document the mouse was last dragged over.
Member<Document> m_dragInitiator; // The Document (if any) that initiated the drag.
« no previous file with comments | « third_party/WebKit/Source/core/page/DragClient.h ('k') | third_party/WebKit/Source/core/page/DragController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698