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

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

Issue 1048333005: ozone: Map TouchEvent::touch_id_ into expected range (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Push all touch id management into EventFactoryEvdev Created 5 years, 8 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
« no previous file with comments | « no previous file | ui/events/ozone/evdev/device_event_dispatcher_evdev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 a7dddce1d8ee494e129e477cd8183ddba88d9b9a..0733eb00b0c2bece09c0371a193ff7e8343bb6c6 100644
--- a/ui/events/ozone/evdev/device_event_dispatcher_evdev.h
+++ b/ui/events/ozone/evdev/device_event_dispatcher_evdev.h
@@ -99,7 +99,7 @@ struct EVENTS_OZONE_EVDEV_EXPORT ScrollEventParams {
struct EVENTS_OZONE_EVDEV_EXPORT TouchEventParams {
TouchEventParams(int device_id,
- int touch_id,
+ int slot,
EventType type,
const gfx::PointF& location,
const gfx::Vector2dF& radii,
@@ -109,7 +109,7 @@ struct EVENTS_OZONE_EVDEV_EXPORT TouchEventParams {
~TouchEventParams();
int device_id;
- int touch_id;
+ int slot;
EventType type;
gfx::PointF location;
gfx::Vector2dF radii;
« no previous file with comments | « no previous file | ui/events/ozone/evdev/device_event_dispatcher_evdev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698