| Index: ui/events/ozone/evdev/input_device_factory_evdev.cc
|
| diff --git a/ui/events/ozone/evdev/input_device_factory_evdev.cc b/ui/events/ozone/evdev/input_device_factory_evdev.cc
|
| index 69f04fdcc4fe8e3ad89676be588c2bcd36499d41..fe958f4b71245a9e18c67286fb77b9e53eb592a1 100644
|
| --- a/ui/events/ozone/evdev/input_device_factory_evdev.cc
|
| +++ b/ui/events/ozone/evdev/input_device_factory_evdev.cc
|
| @@ -428,10 +428,10 @@ void InputDeviceFactoryEvdev::NotifyTouchscreensUpdated() {
|
| }
|
|
|
| void InputDeviceFactoryEvdev::NotifyKeyboardsUpdated() {
|
| - std::vector<KeyboardDevice> keyboards;
|
| + std::vector<InputDevice> keyboards;
|
| for (auto it = converters_.begin(); it != converters_.end(); ++it) {
|
| if (it->second->HasKeyboard()) {
|
| - keyboards.push_back(KeyboardDevice(it->second->input_device()));
|
| + keyboards.push_back(InputDevice(it->second->input_device()));
|
| }
|
| }
|
|
|
|
|