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

Unified Diff: content/renderer/input/input_handler_manager_client.h

Issue 1631963002: Plumb firing passive event listeners. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_wheel_passive_listeners_2a
Patch Set: Set dependency correctly Created 4 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: content/renderer/input/input_handler_manager_client.h
diff --git a/content/renderer/input/input_handler_manager_client.h b/content/renderer/input/input_handler_manager_client.h
index cf4fe00f35a430dc16b952276ac0687cfcdafde1..4aa68863bd545f29387b0ec59ba097827afcc36a 100644
--- a/content/renderer/input/input_handler_manager_client.h
+++ b/content/renderer/input/input_handler_manager_client.h
@@ -10,6 +10,7 @@
#include "base/macros.h"
#include "content/common/content_export.h"
#include "content/common/input/input_event_ack_state.h"
+#include "third_party/WebKit/public/web/WebInputEvent.h"
#include "ui/gfx/geometry/vector2d_f.h"
namespace ui {
@@ -20,10 +21,6 @@ namespace cc {
class InputHandler;
}
-namespace blink {
-class WebInputEvent;
-}
-
namespace ui {
class SynchronousInputHandlerProxy;
}
@@ -54,6 +51,8 @@ class CONTENT_EXPORT InputHandlerManagerClient {
virtual void DidOverscroll(int routing_id,
const DidOverscrollParams& params) = 0;
virtual void DidStopFlinging(int routing_id) = 0;
+ virtual void PassiveInputEventHandled(int routing_id,
+ blink::WebInputEvent::Type type) = 0;
protected:
InputHandlerManagerClient() {}

Powered by Google App Engine
This is Rietveld 408576698