Index: ui/events/ozone/evdev/input_controller_evdev.cc |
diff --git a/ui/events/ozone/evdev/input_controller_evdev.cc b/ui/events/ozone/evdev/input_controller_evdev.cc |
index 79559f0129158cf71057fefa959a707955da78fd..65ca67ec8cc4ebd86ff926c4fc819b87851ae2ce 100644 |
--- a/ui/events/ozone/evdev/input_controller_evdev.cc |
+++ b/ui/events/ozone/evdev/input_controller_evdev.cc |
@@ -104,6 +104,23 @@ void InputControllerEvdev::GetAutoRepeatRate(base::TimeDelta* delay, |
keyboard_->GetAutoRepeatRate(delay, interval); |
} |
+void InputControllerEvdev::DisableInternalTouchpad() { |
+ event_factory_->DisableInternalTouchpad(); |
+} |
+ |
+void InputControllerEvdev::EnableInternalTouchpad() { |
+ event_factory_->EnableInternalTouchpad(); |
+} |
+ |
+void InputControllerEvdev::DisableInternalKeyboardExceptKeys( |
+ scoped_ptr<std::set<DomCode>> excepted_keys) { |
+ event_factory_->DisableInternalKeyboardExceptKeys(excepted_keys.Pass()); |
+} |
+ |
+void InputControllerEvdev::EnableInternalKeyboard() { |
+ event_factory_->EnableInternalKeyboard(); |
+} |
+ |
void InputControllerEvdev::SetIntPropertyForOneType(const EventDeviceType type, |
const std::string& name, |
int value) { |