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

Unified Diff: third_party/WebKit/Source/web/PageWidgetDelegate.h

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/PageWidgetDelegate.h
diff --git a/third_party/WebKit/Source/web/PageWidgetDelegate.h b/third_party/WebKit/Source/web/PageWidgetDelegate.h
index 1f18320acdc894df3c88c45fd7f83c904116e14c..4d5c41a5ad5ba4c7f0cca35852ff0d8766f53644 100644
--- a/third_party/WebKit/Source/web/PageWidgetDelegate.h
+++ b/third_party/WebKit/Source/web/PageWidgetDelegate.h
@@ -32,7 +32,7 @@
#define PageWidgetDelegate_h
#include "public/platform/WebCanvas.h"
-#include "public/platform/WebInputEvent.h"
+#include "public/platform/WebCoalescedInputEvent.h"
#include "public/web/WebWidget.h"
#include "web/WebExport.h"
@@ -85,9 +85,10 @@ class PageWidgetDelegate {
LocalFrame& root);
// See FIXME in the function body about nullptr |root|.
- static WebInputEventResult handleInputEvent(PageWidgetEventHandler&,
- const WebInputEvent&,
- LocalFrame* root);
+ static WebInputEventResult handleInputEvent(
+ PageWidgetEventHandler&,
+ const WebCoalescedInputEvent& coalescedEvent,
+ LocalFrame* root);
private:
PageWidgetDelegate() {}

Powered by Google App Engine
This is Rietveld 408576698