| Index: ui/events/ozone/evdev/event_factory_evdev.cc
|
| diff --git a/ui/events/ozone/evdev/event_factory_evdev.cc b/ui/events/ozone/evdev/event_factory_evdev.cc
|
| index 5499339b5d40911d5d889a1cca7439999ccac81f..c550646a1546b079e51832fd90a9514507039d75 100644
|
| --- a/ui/events/ozone/evdev/event_factory_evdev.cc
|
| +++ b/ui/events/ozone/evdev/event_factory_evdev.cc
|
| @@ -272,9 +272,11 @@ void EventFactoryEvdev::NotifyHotplugEventObserver(
|
| std::vector<TouchscreenDevice> touchscreens;
|
| for (auto it = converters_.begin(); it != converters_.end(); ++it) {
|
| if (it->second->HasTouchscreen()) {
|
| - touchscreens.push_back(TouchscreenDevice(it->second->id(),
|
| - it->second->GetTouchscreenSize(),
|
| - false /* is_internal */));
|
| + touchscreens.push_back(
|
| + TouchscreenDevice(it->second->id(),
|
| + InputDeviceType::INPUT_DEVICE_EXTERNAL,
|
| + std::string(), /* Device name */
|
| + it->second->GetTouchscreenSize()));
|
| }
|
| }
|
|
|
|
|