| 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 170d3a66c2102f321c5267cf8b00740fd9151440..0a0d674ef38767fad312b57e19d9516590425fa1 100644
|
| --- a/ui/events/ozone/evdev/event_factory_evdev.cc
|
| +++ b/ui/events/ozone/evdev/event_factory_evdev.cc
|
| @@ -295,9 +295,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()));
|
| }
|
| }
|
|
|
|
|