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

Unified Diff: content/renderer/input/passive_event_queue.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/passive_event_queue.h
diff --git a/content/renderer/input/passive_event_queue.h b/content/renderer/input/passive_event_queue.h
new file mode 100644
index 0000000000000000000000000000000000000000..093b47ac1b70ee62b8623c16249ea8eabc60df93
--- /dev/null
+++ b/content/renderer/input/passive_event_queue.h
@@ -0,0 +1,44 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_RENDERER_INPUT_PASSIVE_EVENT_QUEUE_H_
+#define CONTENT_RENDERER_INPUT_PASSIVE_EVENT_QUEUE_H_
+
+#include <deque>
+#include "content/common/input/event_with_latency_info.h"
+#include "content/renderer/input/web_input_event_queue.h"
+#include "third_party/WebKit/public/web/WebInputEvent.h"
+#include "ui/events/latency_info.h"
+
+namespace content {
+
+class PassiveEventQueueClient {
Rick Byers 2016/01/26 19:17:21 nit: I'm not sure the term "passive event" makes s
+ public:
+ virtual void SendPassiveEvent(int routing_id,
+ const blink::WebInputEvent* event,
+ const ui::LatencyInfo& latency);
+};
+
+class PassiveEventQueue {
+ public:
+ PassiveEventQueue(int routing_id, PassiveEventQueueClient* client);
+ ~PassiveEventQueue();
+
+ void HandleNonBlockingEvent(const blink::WebInputEvent* event,
+ const ui::LatencyInfo& latency);
+
+ void EventHandled(blink::WebInputEvent::Type type);
+
+ private:
+ int routing_id_;
+ PassiveEventQueueClient* client_;
+ WebInputEventQueue<MouseWheelEventWithLatencyInfo> wheel_events_;
+ WebInputEventQueue<TouchEventWithLatencyInfo> touch_events_;
+
+ DISALLOW_COPY_AND_ASSIGN(PassiveEventQueue);
+};
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_INPUT_WEB_INPUT_EVENT_QUEUE_H_

Powered by Google App Engine
This is Rietveld 408576698