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