| Index: third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| index 815cc54f36166a0e7025a8c445f87669aa65e480..61cb67200873d646be107de6cf3e629ed5263d6c 100644
|
| --- a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| @@ -181,6 +181,19 @@ private:
|
| return false;
|
| }
|
|
|
| + void setHaveScrollEventHandlers(bool hasEventHandlers) override
|
| + {
|
| + if (m_popup->m_layerTreeView)
|
| + m_popup->m_layerTreeView->setHaveScrollEventHandlers(hasEventHandlers);
|
| + }
|
| +
|
| + bool haveScrollEventHandlers() const override
|
| + {
|
| + if (m_popup->m_layerTreeView)
|
| + return m_popup->m_layerTreeView->haveScrollEventHandlers();
|
| + return false;
|
| + }
|
| +
|
| void setTouchAction(TouchAction touchAction) override
|
| {
|
| if (WebViewClient* client = m_popup->m_webView->client())
|
|
|