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

Unified Diff: third_party/WebKit/public/web/WebView.h

Issue 2485693003: Drag-and-drop: DragEnter, DragOver, DragLeave, DragDrop (Closed)
Patch Set: Rebased. More fixes. Created 4 years, 1 month 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 | « third_party/WebKit/public/web/WebFrameWidget.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebView.h
diff --git a/third_party/WebKit/public/web/WebView.h b/third_party/WebKit/public/web/WebView.h
index a83fe014582150678c04cecacf79cf593af6709f..d1e98a73a046492a29e73d1c92ed10729968869a 100644
--- a/third_party/WebKit/public/web/WebView.h
+++ b/third_party/WebKit/public/web/WebView.h
@@ -376,25 +376,6 @@ class WebView : protected WebWidget {
// Notfies the WebView that the system drag and drop operation has ended.
virtual void dragSourceSystemDragEnded() = 0;
- // Callback methods when a drag-and-drop operation is trying to drop
- // something on the WebView.
- virtual WebDragOperation dragTargetDragEnter(
- const WebDragData&,
- const WebPoint& pointInViewport,
- const WebPoint& screenPoint,
- WebDragOperationsMask operationsAllowed,
- int modifiers) = 0;
- virtual WebDragOperation dragTargetDragOver(
- const WebPoint& pointInViewport,
- const WebPoint& screenPoint,
- WebDragOperationsMask operationsAllowed,
- int modifiers) = 0;
- virtual void dragTargetDragLeave() = 0;
- virtual void dragTargetDrop(const WebDragData&,
- const WebPoint& pointInViewport,
- const WebPoint& screenPoint,
- int modifiers) = 0;
-
// Retrieves a list of spelling markers.
virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0;
virtual void removeSpellingMarkersUnderWords(
« no previous file with comments | « third_party/WebKit/public/web/WebFrameWidget.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698