| 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 8360378cf042cdb251dca338737ee26730298cb8..19243199a405c9b8bca457eb47aac17b3f695671 100644
|
| --- a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| @@ -511,11 +511,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) {
|
|
|