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

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

Issue 2479123003: WIP Add getCoalescedEvents API using vector of WebInputEvents (Closed)
Patch Set: 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..3020fa07f8a3a0f804fe1471e064087e2a7ccef3 100644
--- a/third_party/WebKit/Source/web/ExternalPopupMenu.cpp
+++ b/third_party/WebKit/Source/web/ExternalPopupMenu.cpp
@@ -126,7 +126,8 @@ void ExternalPopupMenu::show() {
}
void ExternalPopupMenu::dispatchEvent(TimerBase*) {
- m_webView.handleInputEvent(*m_syntheticEvent);
+ m_webView.handleInputEvent(*m_syntheticEvent,
+ std::vector<const WebInputEvent*>());
m_syntheticEvent.reset();
}

Powered by Google App Engine
This is Rietveld 408576698