Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1022)

Unified Diff: third_party/WebKit/Source/web/WebPagePopupImpl.cpp

Issue 2621303004: Keep track of coalesced events in main thread event queue (Closed)
Patch Set: Keep coalesced events in main thread event queue unittests Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698