| Index: ui/events/ozone/evdev/device_event_dispatcher_evdev.cc
|
| diff --git a/ui/events/ozone/evdev/device_event_dispatcher_evdev.cc b/ui/events/ozone/evdev/device_event_dispatcher_evdev.cc
|
| index 66779eecc00cd3cfa18d202d1691380af4f0831d..a299af3e3495e9905c7eaf3c5b04ee862e35af84 100644
|
| --- a/ui/events/ozone/evdev/device_event_dispatcher_evdev.cc
|
| +++ b/ui/events/ozone/evdev/device_event_dispatcher_evdev.cc
|
| @@ -24,10 +24,12 @@ KeyEventParams::~KeyEventParams() {
|
| }
|
|
|
| MouseMoveEventParams::MouseMoveEventParams(int device_id,
|
| + int flags,
|
| const gfx::PointF& location,
|
| const PointerDetails& details,
|
| base::TimeTicks timestamp)
|
| : device_id(device_id),
|
| + flags(flags),
|
| location(location),
|
| pointer_details(details),
|
| timestamp(timestamp) {}
|
| @@ -39,6 +41,7 @@ MouseMoveEventParams::~MouseMoveEventParams() {
|
| }
|
|
|
| MouseButtonEventParams::MouseButtonEventParams(int device_id,
|
| + int flags,
|
| const gfx::PointF& location,
|
| unsigned int button,
|
| bool down,
|
| @@ -46,6 +49,7 @@ MouseButtonEventParams::MouseButtonEventParams(int device_id,
|
| const PointerDetails& details,
|
| base::TimeTicks timestamp)
|
| : device_id(device_id),
|
| + flags(flags),
|
| location(location),
|
| button(button),
|
| down(down),
|
|
|