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 47725bd24cfc26204b0c4f8e8292e2cdbae26a08..9c48b4c6b1011a6f81d5cab8f33e670f939befc9 100644 |
--- a/ui/events/ozone/evdev/device_event_dispatcher_evdev.cc |
+++ b/ui/events/ozone/evdev/device_event_dispatcher_evdev.cc |
@@ -25,9 +25,18 @@ KeyEventParams::~KeyEventParams() { |
MouseMoveEventParams::MouseMoveEventParams(int device_id, |
const gfx::PointF& location, |
+ EventPointerType pointer_type, |
+ float force, |
+ float tilt_x, |
+ float tilt_y, |
base::TimeDelta timestamp) |
- : device_id(device_id), location(location), timestamp(timestamp) { |
-} |
+ : device_id(device_id), |
+ location(location), |
+ pointer_type(pointer_type), |
+ force(force), |
+ tilt_x(tilt_x), |
+ tilt_y(tilt_y), |
+ timestamp(timestamp) {} |
MouseMoveEventParams::MouseMoveEventParams(const MouseMoveEventParams& other) = |
default; |
@@ -40,14 +49,21 @@ MouseButtonEventParams::MouseButtonEventParams(int device_id, |
unsigned int button, |
bool down, |
bool allow_remap, |
+ EventPointerType pointer_type, |
+ float force, |
+ float tilt_x, |
+ float tilt_y, |
base::TimeDelta timestamp) |
: device_id(device_id), |
location(location), |
button(button), |
down(down), |
allow_remap(allow_remap), |
- timestamp(timestamp) { |
-} |
+ pointer_type(pointer_type), |
+ force(force), |
+ tilt_x(tilt_x), |
+ tilt_y(tilt_y), |
+ timestamp(timestamp) {} |
MouseButtonEventParams::MouseButtonEventParams( |
const MouseButtonEventParams& other) = default; |