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

Unified Diff: ui/aura/event_injector.h

Issue 2869273010: aura: Introduce EventInjector. (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 | « ui/aura/env.h ('k') | ui/aura/event_injector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/event_injector.h
diff --git a/ui/aura/event_injector.h b/ui/aura/event_injector.h
new file mode 100644
index 0000000000000000000000000000000000000000..a1da2998abe66af791edfb381f316f6096bbd7fd
--- /dev/null
+++ b/ui/aura/event_injector.h
@@ -0,0 +1,38 @@
+// Copyright 2017 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 UI_AURA_EVENT_INJECTOR_H_
+#define UI_AURA_EVENT_INJECTOR_H_
+
+#include "services/ui/public/interfaces/window_server_test.mojom.h"
+#include "ui/aura/aura_export.h"
+
+namespace ui {
+class Event;
+struct EventDispatchDetails;
+}
+
+namespace aura {
+
+class WindowTreeHost;
+
+// Used to inject events into the system. In LOCAL mode, it directly injects
+// events into the WindowTreeHost, but in MUS mode, it injects events into the
+// window-server (over the mojom API).
+class AURA_EXPORT EventInjector {
+ public:
+ EventInjector();
+ ~EventInjector();
+
+ ui::EventDispatchDetails Inject(WindowTreeHost* host, ui::Event* event);
+
+ private:
+ ui::mojom::WindowServerTestPtr window_server_ptr_;
+
+ DISALLOW_COPY_AND_ASSIGN(EventInjector);
+};
+
+} // namespace aura
+
+#endif // UI_AURA_EVENT_INJECTOR_H_
« no previous file with comments | « ui/aura/env.h ('k') | ui/aura/event_injector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698