Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Unified Diff: ui/events/ozone/evdev/device_event_dispatcher_evdev.h

Issue 2248933002: Support pen in TouchEventConverterEvdev (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698