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

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.h

Issue 2501213002: Drag-and-drop: dragSourceEndedAt, dragSourceSystemDragEnded (Closed)
Patch Set: 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/Source/web/WebViewImpl.h
diff --git a/third_party/WebKit/Source/web/WebViewImpl.h b/third_party/WebKit/Source/web/WebViewImpl.h
index 9a90f914fd87582faba002634e53dcaf28d7f81e..2dd33e8556932fb3920b9bf24fa09cc77a7eb5ed 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.h
+++ b/third_party/WebKit/Source/web/WebViewImpl.h
@@ -239,10 +239,6 @@ class WEB_EXPORT WebViewImpl final
WebHitTestResult hitTestResultAt(const WebPoint&) override;
WebHitTestResult hitTestResultForTap(const WebPoint&,
const WebSize&) override;
- void dragSourceEndedAt(const WebPoint& pointInViewport,
- const WebPoint& screenPoint,
- WebDragOperation) override;
- void dragSourceSystemDragEnded() override;
void spellingMarkers(WebVector<uint32_t>* markers) override;
void removeSpellingMarkersUnderWords(
const WebVector<WebString>& words) override;
@@ -506,6 +502,7 @@ class WEB_EXPORT WebViewImpl final
ChromeClientImpl& chromeClient() const { return *m_chromeClientImpl.get(); }
void setDoingDragAndDrop(bool doing) { m_doingDragAndDrop = doing; }
+ bool doingDragAndDrop() { return m_doingDragAndDrop; }
// Returns the currently active WebInputMethodController which the one
// corresponding to the focused frame. It will return nullptr if there are

Powered by Google App Engine
This is Rietveld 408576698