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

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

Issue 2621303004: Keep track of coalesced events in main thread event queue (Closed)
Patch Set: Rebase 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 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) {
« no previous file with comments | « third_party/WebKit/Source/web/WebPagePopupImpl.h ('k') | third_party/WebKit/Source/web/WebViewFrameWidget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698