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

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

Issue 2576013002: Introducing WebCoalescedInputEvent and inclusion in content/common (Closed)
Patch Set: Fix a few DCHECK hits 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/WebFrameWidgetImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
index 9ab3a0a81e75eaf26acc7f379859d0e9140d532b..d33067b7bebb7f2e09bbc1afd5323c63c77a0b49 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
@@ -378,8 +378,8 @@ WebInputEventResult WebFrameWidgetImpl::handleInputEvent(
return WebInputEventResult::HandledSystem;
}
- return PageWidgetDelegate::handleInputEvent(*this, inputEvent,
- m_localRoot->frame());
+ return PageWidgetDelegate::handleInputEvent(
+ *this, WebCoalescedInputEvent(inputEvent), m_localRoot->frame());
}
void WebFrameWidgetImpl::setCursorVisibilityState(bool isVisible) {

Powered by Google App Engine
This is Rietveld 408576698