| 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 7e1d2c3d94fe15ea2b7235f99dde0f3d274f82f8..d9e21ec198d697016d93b69c311eb94280071f5f 100644
|
| --- a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| @@ -509,11 +509,11 @@ bool WebPagePopupImpl::isViewportPointInWindow(int x, int y) {
|
| }
|
|
|
| WebInputEventResult WebPagePopupImpl::handleInputEvent(
|
| - const WebInputEvent& event) {
|
| + const WebCoalescedInputEvent& event) {
|
| if (m_closing)
|
| return WebInputEventResult::NotHandled;
|
| return PageWidgetDelegate::handleInputEvent(
|
| - *this, WebCoalescedInputEvent(event), m_page->deprecatedLocalMainFrame());
|
| + *this, event, m_page->deprecatedLocalMainFrame());
|
| }
|
|
|
| void WebPagePopupImpl::setFocus(bool enable) {
|
|
|