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

Unified Diff: ui/events/ozone/evdev/input_controller_evdev.h

Issue 875513005: [PATCH 10/11] ozone: evdev: Add a device factory proxy that forwards to device thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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
« no previous file with comments | « ui/events/ozone/evdev/event_factory_evdev.cc ('k') | ui/events/ozone/evdev/input_controller_evdev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/ozone/evdev/input_controller_evdev.h
diff --git a/ui/events/ozone/evdev/input_controller_evdev.h b/ui/events/ozone/evdev/input_controller_evdev.h
index d6c150b28769b54bb3b00addc841893051e5c84c..d5e26eccc279b14caf45258c6876e2875ea9bb24 100644
--- a/ui/events/ozone/evdev/input_controller_evdev.h
+++ b/ui/events/ozone/evdev/input_controller_evdev.h
@@ -13,7 +13,7 @@
namespace ui {
-class InputDeviceFactoryEvdev;
+class InputDeviceFactoryEvdevProxy;
class KeyboardEvdev;
class MouseButtonMapEvdev;
@@ -26,7 +26,8 @@ class EVENTS_OZONE_EVDEV_EXPORT InputControllerEvdev : public InputController {
// Initialize device factory. This would be in the constructor if it was
// built early enough for that to be possible.
- void SetInputDeviceFactory(InputDeviceFactoryEvdev* input_device_factory);
+ void SetInputDeviceFactory(
+ InputDeviceFactoryEvdevProxy* input_device_factory);
void set_has_mouse(bool has_mouse);
void set_has_touchpad(bool has_touchpad);
@@ -60,7 +61,7 @@ class EVENTS_OZONE_EVDEV_EXPORT InputControllerEvdev : public InputController {
private:
// Factory for devices. Needed to update device config.
- InputDeviceFactoryEvdev* input_device_factory_;
+ InputDeviceFactoryEvdevProxy* input_device_factory_;
// Keyboard state.
KeyboardEvdev* keyboard_;
« no previous file with comments | « ui/events/ozone/evdev/event_factory_evdev.cc ('k') | ui/events/ozone/evdev/input_controller_evdev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698