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

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

Issue 2501213002: Drag-and-drop: dragSourceEndedAt, dragSourceSystemDragEnded (Closed)
Patch Set: Rebased. Added check for !GetWebWidget(). 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 e64c483d6c4a81c81a2b913606cb5919cfca0712..1071850e6522e8c59f57b32d689d0d1bcd3317f7 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.h
+++ b/third_party/WebKit/Source/web/WebViewImpl.h
@@ -240,10 +240,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;
@@ -507,6 +503,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