| Index: ui/events/ozone/evdev/device_event_dispatcher_evdev.h
|
| diff --git a/ui/events/ozone/evdev/device_event_dispatcher_evdev.h b/ui/events/ozone/evdev/device_event_dispatcher_evdev.h
|
| index c70234be2d3014886870671db9b0123bfcc8ccaa..239df9f487f2ce028a1897beec66ddbdb3d7c90d 100644
|
| --- a/ui/events/ozone/evdev/device_event_dispatcher_evdev.h
|
| +++ b/ui/events/ozone/evdev/device_event_dispatcher_evdev.h
|
| @@ -37,6 +37,7 @@ struct EVENTS_OZONE_EVDEV_EXPORT KeyEventParams {
|
|
|
| struct EVENTS_OZONE_EVDEV_EXPORT MouseMoveEventParams {
|
| MouseMoveEventParams(int device_id,
|
| + int flags,
|
| const gfx::PointF& location,
|
| const PointerDetails& details,
|
| base::TimeTicks timestamp);
|
| @@ -44,6 +45,7 @@ struct EVENTS_OZONE_EVDEV_EXPORT MouseMoveEventParams {
|
| ~MouseMoveEventParams();
|
|
|
| int device_id;
|
| + int flags;
|
| gfx::PointF location;
|
| PointerDetails pointer_details;
|
| base::TimeTicks timestamp;
|
| @@ -51,6 +53,7 @@ struct EVENTS_OZONE_EVDEV_EXPORT MouseMoveEventParams {
|
|
|
| struct EVENTS_OZONE_EVDEV_EXPORT MouseButtonEventParams {
|
| MouseButtonEventParams(int device_id,
|
| + int flags,
|
| const gfx::PointF& location,
|
| unsigned int button,
|
| bool down,
|
| @@ -61,6 +64,7 @@ struct EVENTS_OZONE_EVDEV_EXPORT MouseButtonEventParams {
|
| ~MouseButtonEventParams();
|
|
|
| int device_id;
|
| + int flags;
|
| gfx::PointF location;
|
| unsigned int button;
|
| bool down;
|
|
|