Index: ui/events/ozone/evdev/touch_event_converter_evdev.cc |
diff --git a/ui/events/ozone/evdev/touch_event_converter_evdev.cc b/ui/events/ozone/evdev/touch_event_converter_evdev.cc |
index d61f10e4832a469cb91051f08e47d264646592db..95d0d77101ae69eb477db66ed934e98626dc8b18 100644 |
--- a/ui/events/ozone/evdev/touch_event_converter_evdev.cc |
+++ b/ui/events/ozone/evdev/touch_event_converter_evdev.cc |
@@ -83,15 +83,8 @@ |
base::FilePath path, |
int id, |
InputDeviceType type, |
- const EventDeviceInfo& devinfo, |
DeviceEventDispatcherEvdev* dispatcher) |
- : EventConverterEvdev(fd, |
- path, |
- id, |
- type, |
- devinfo.name(), |
- devinfo.vendor_id(), |
- devinfo.product_id()), |
+ : EventConverterEvdev(fd, path, id, type), |
dispatcher_(dispatcher), |
syn_dropped_(false), |
has_mt_(false), |
@@ -365,7 +358,7 @@ |
EventType event_type, |
const base::TimeDelta& timestamp) { |
dispatcher_->DispatchTouchEvent(TouchEventParams( |
- input_device_.id, event.slot, event_type, gfx::PointF(event.x, event.y), |
+ id_, event.slot, event_type, gfx::PointF(event.x, event.y), |
gfx::Vector2dF(event.radius_x, event.radius_y), event.pressure, |
timestamp)); |
} |