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

Unified Diff: content/browser/renderer_host/input/input_router.h

Issue 2914083002: Move InputRouterImpl::Config to InputRouter::Config (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « no previous file | content/browser/renderer_host/input/input_router_config_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/input/input_router.h
diff --git a/content/browser/renderer_host/input/input_router.h b/content/browser/renderer_host/input/input_router.h
index 1a3a1638f16c2dc8d86d1c5e48e81693a22bc198..b8af5cb2bcd56897771969acf120b7ef8fce472e 100644
--- a/content/browser/renderer_host/input/input_router.h
+++ b/content/browser/renderer_host/input/input_router.h
@@ -6,6 +6,8 @@
#define CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_H_
#include "content/browser/renderer_host/event_with_latency_info.h"
+#include "content/browser/renderer_host/input/gesture_event_queue.h"
+#include "content/browser/renderer_host/input/touch_event_queue.h"
#include "content/common/input/input_event_ack_state.h"
#include "content/public/browser/native_web_keyboard_event.h"
#include "ipc/ipc_listener.h"
@@ -19,6 +21,12 @@ namespace content {
// received, it is free to customize when those events are dispatched.
class InputRouter : public IPC::Listener {
public:
+ struct CONTENT_EXPORT Config {
+ Config();
+ GestureEventQueue::Config gesture_config;
+ TouchEventQueue::Config touch_config;
+ };
+
~InputRouter() override {}
// Send and take ownership of the the given InputMsg_*. This should be used
« no previous file with comments | « no previous file | content/browser/renderer_host/input/input_router_config_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698