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

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

Issue 2485693003: Drag-and-drop: DragEnter, DragOver, DragLeave, DragDrop (Closed)
Patch Set: Rebased. 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
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 980ffc793c5f2ff3be5ce9dc1fd5dcf59b9cd3d5..6021e3c68e98cf3ae063e9fd51b9cf0faa28a9f4 100644
--- a/third_party/WebKit/public/web/WebView.h
+++ b/third_party/WebKit/public/web/WebView.h
@@ -379,25 +379,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(

Powered by Google App Engine
This is Rietveld 408576698