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

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

Issue 991533002: Port Chromium OS touch noise filtering to Chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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.cc
diff --git a/ui/events/ozone/evdev/device_event_dispatcher_evdev.cc b/ui/events/ozone/evdev/device_event_dispatcher_evdev.cc
index 2743846ef351ed4814ef95a7a2f2453127bed870..1205ad60fc35e91d7c9f1d260800ea1e19b5fb4d 100644
--- a/ui/events/ozone/evdev/device_event_dispatcher_evdev.cc
+++ b/ui/events/ozone/evdev/device_event_dispatcher_evdev.cc
@@ -89,6 +89,7 @@ ScrollEventParams::~ScrollEventParams() {
TouchEventParams::TouchEventParams(int device_id,
int touch_id,
+ int tracking_id,
EventType type,
const gfx::PointF& location,
const gfx::Vector2dF& radii,
@@ -96,6 +97,7 @@ TouchEventParams::TouchEventParams(int device_id,
const base::TimeDelta& timestamp)
: device_id(device_id),
touch_id(touch_id),
+ tracking_id(tracking_id),
type(type),
location(location),
radii(radii),

Powered by Google App Engine
This is Rietveld 408576698