| 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
|
|
|