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

Unified Diff: third_party/WebKit/Source/web/WebViewFrameWidget.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/WebViewFrameWidget.cpp
diff --git a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
index 506f3a2c3d376ceb987df31779067ee4002494af..7e333c3c5db537209fa276d6de392444102a554a 100644
--- a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
+++ b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
@@ -83,8 +83,9 @@ void WebViewFrameWidget::themeChanged() {
}
WebInputEventResult WebViewFrameWidget::handleInputEvent(
- const WebInputEvent& event) {
- return m_webView->handleInputEvent(event);
+ const WebInputEvent& event,
+ const std::vector<const WebInputEvent*>& coalescedEvents) {
+ return m_webView->handleInputEvent(event, coalescedEvents);
}
void WebViewFrameWidget::setCursorVisibilityState(bool isVisible) {

Powered by Google App Engine
This is Rietveld 408576698