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

Unified Diff: third_party/WebKit/Source/web/WebPagePopupImpl.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/WebPagePopupImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
index 2b83ad5714484f6cab641241da89f1eebb9ea2b2..9ec8069d640c9b5262fa5c6be13c4dadeafe30e7 100644
--- a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
+++ b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
@@ -493,7 +493,7 @@ bool WebPagePopupImpl::isViewportPointInWindow(int x, int y) {
}
WebInputEventResult WebPagePopupImpl::handleInputEvent(
- const WebInputEvent& event) {
+ const CoalescedWebInputEvent& event) {
if (m_closing)
return WebInputEventResult::NotHandled;
return PageWidgetDelegate::handleInputEvent(

Powered by Google App Engine
This is Rietveld 408576698