Chromium Code Reviews| 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..7e4d6a102fef221f8107246a9980c9836ccf24c1 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::EXTERNAL, |
| + "", /* Device name */ |
|
sky
2014/10/20 22:18:44
"" -> std::string()
rsadam
2014/10/21 16:53:52
Done.
|
| + it->second->GetTouchscreenSize())); |
| } |
| } |