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

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

Issue 2479123003: WIP Add getCoalescedEvents API using vector of WebInputEvents (Closed)
Patch Set: Creating CoalescedWebInputEvent Created 4 years, 1 month 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/ExternalPopupMenu.cpp
diff --git a/third_party/WebKit/Source/web/ExternalPopupMenu.cpp b/third_party/WebKit/Source/web/ExternalPopupMenu.cpp
index 70ea218ae0d8df4a61f6f863981b20e21f900047..427cf8fa3cdcc986c66d7963cb11450c61696dcb 100644
--- a/third_party/WebKit/Source/web/ExternalPopupMenu.cpp
+++ b/third_party/WebKit/Source/web/ExternalPopupMenu.cpp
@@ -126,7 +126,7 @@ void ExternalPopupMenu::show() {
}
void ExternalPopupMenu::dispatchEvent(TimerBase*) {
- m_webView.handleInputEvent(*m_syntheticEvent);
+ m_webView.handleInputEvent(CoalescedWebInputEvent(*m_syntheticEvent));
m_syntheticEvent.reset();
}

Powered by Google App Engine
This is Rietveld 408576698