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

Unified Diff: third_party/WebKit/public/web/WebWidget.h

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/public/web/WebWidget.h
diff --git a/third_party/WebKit/public/web/WebWidget.h b/third_party/WebKit/public/web/WebWidget.h
index f5733a90c9863dfec5e3a37dc65adebf98e7e5c1..33f584e918a28fc2bcfa5f4cc7c1d001e333090b 100644
--- a/third_party/WebKit/public/web/WebWidget.h
+++ b/third_party/WebKit/public/web/WebWidget.h
@@ -47,7 +47,7 @@
namespace blink {
class WebCompositeAndReadbackAsyncCallback;
-class WebInputEvent;
+class CoalescedWebInputEvent;
class WebLayoutAndPaintAsyncCallback;
class WebPagePopup;
class WebString;
@@ -117,7 +117,7 @@ class WebWidget {
virtual void themeChanged() {}
// Called to inform the WebWidget of an input event.
- virtual WebInputEventResult handleInputEvent(const WebInputEvent&) {
+ virtual WebInputEventResult handleInputEvent(const CoalescedWebInputEvent&) {
return WebInputEventResult::NotHandled;
}

Powered by Google App Engine
This is Rietveld 408576698