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

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

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 | « ui/events/ozone/evdev/event_factory_evdev.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc
diff --git a/ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc b/ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc
index e2bc3a4d7010735a797ac362f8d1683b98b9cc4e..87c25e8573977bb9dabda0748312e9a5d4738b8a 100644
--- a/ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc
+++ b/ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc
@@ -256,7 +256,7 @@ TEST_F(TouchEventConverterEvdevTest, TouchMove) {
event.timestamp);
EXPECT_EQ(295, event.location.x());
EXPECT_EQ(421, event.location.y());
- EXPECT_EQ(0, event.touch_id);
+ EXPECT_EQ(0, event.slot);
EXPECT_FLOAT_EQ(58.f, event.radii.x());
EXPECT_FLOAT_EQ(0.13333334f, event.pressure);
@@ -271,7 +271,7 @@ TEST_F(TouchEventConverterEvdevTest, TouchMove) {
event.timestamp);
EXPECT_EQ(312, event.location.x());
EXPECT_EQ(432, event.location.y());
- EXPECT_EQ(0, event.touch_id);
+ EXPECT_EQ(0, event.slot);
EXPECT_FLOAT_EQ(50.f, event.radii.x());
EXPECT_FLOAT_EQ(0.16862745f, event.pressure);
@@ -286,7 +286,7 @@ TEST_F(TouchEventConverterEvdevTest, TouchMove) {
event.timestamp);
EXPECT_EQ(312, event.location.x());
EXPECT_EQ(432, event.location.y());
- EXPECT_EQ(0, event.touch_id);
+ EXPECT_EQ(0, event.slot);
EXPECT_FLOAT_EQ(50.f, event.radii.x());
EXPECT_FLOAT_EQ(0.16862745f, event.pressure);
}
@@ -336,7 +336,7 @@ TEST_F(TouchEventConverterEvdevTest, TwoFingerGesture) {
EXPECT_EQ(base::TimeDelta::FromMicroseconds(0), ev0.timestamp);
EXPECT_EQ(40, ev0.location.x());
EXPECT_EQ(51, ev0.location.y());
- EXPECT_EQ(0, ev0.touch_id);
+ EXPECT_EQ(0, ev0.slot);
EXPECT_FLOAT_EQ(0.17647059f, ev0.pressure);
// Press
@@ -344,7 +344,7 @@ TEST_F(TouchEventConverterEvdevTest, TwoFingerGesture) {
EXPECT_EQ(base::TimeDelta::FromMicroseconds(0), ev1.timestamp);
EXPECT_EQ(101, ev1.location.x());
EXPECT_EQ(102, ev1.location.y());
- EXPECT_EQ(1, ev1.touch_id);
+ EXPECT_EQ(1, ev1.slot);
EXPECT_FLOAT_EQ(0.17647059f, ev1.pressure);
// Stationary 0, Moves 1.
@@ -360,7 +360,7 @@ TEST_F(TouchEventConverterEvdevTest, TwoFingerGesture) {
EXPECT_EQ(base::TimeDelta::FromMicroseconds(0), ev1.timestamp);
EXPECT_EQ(40, ev1.location.x());
EXPECT_EQ(102, ev1.location.y());
- EXPECT_EQ(1, ev1.touch_id);
+ EXPECT_EQ(1, ev1.slot);
EXPECT_FLOAT_EQ(0.17647059f, ev1.pressure);
// Move 0, stationary 1.
@@ -377,7 +377,7 @@ TEST_F(TouchEventConverterEvdevTest, TwoFingerGesture) {
EXPECT_EQ(base::TimeDelta::FromMicroseconds(0), ev0.timestamp);
EXPECT_EQ(39, ev0.location.x());
EXPECT_EQ(51, ev0.location.y());
- EXPECT_EQ(0, ev0.touch_id);
+ EXPECT_EQ(0, ev0.slot);
EXPECT_FLOAT_EQ(0.17647059f, ev0.pressure);
// Release 0, move 1.
@@ -395,14 +395,14 @@ TEST_F(TouchEventConverterEvdevTest, TwoFingerGesture) {
EXPECT_EQ(base::TimeDelta::FromMicroseconds(0), ev0.timestamp);
EXPECT_EQ(39, ev0.location.x());
EXPECT_EQ(51, ev0.location.y());
- EXPECT_EQ(0, ev0.touch_id);
+ EXPECT_EQ(0, ev0.slot);
EXPECT_FLOAT_EQ(0.17647059f, ev0.pressure);
EXPECT_EQ(ui::ET_TOUCH_MOVED, ev1.type);
EXPECT_EQ(base::TimeDelta::FromMicroseconds(0), ev1.timestamp);
EXPECT_EQ(38, ev1.location.x());
EXPECT_EQ(102, ev1.location.y());
- EXPECT_EQ(1, ev1.touch_id);
+ EXPECT_EQ(1, ev1.slot);
EXPECT_FLOAT_EQ(0.17647059f, ev1.pressure);
// Release 1.
@@ -418,7 +418,7 @@ TEST_F(TouchEventConverterEvdevTest, TwoFingerGesture) {
EXPECT_EQ(base::TimeDelta::FromMicroseconds(0), ev1.timestamp);
EXPECT_EQ(38, ev1.location.x());
EXPECT_EQ(102, ev1.location.y());
- EXPECT_EQ(1, ev1.touch_id);
+ EXPECT_EQ(1, ev1.slot);
EXPECT_FLOAT_EQ(0.17647059f, ev1.pressure);
}
@@ -488,7 +488,7 @@ TEST_F(TouchEventConverterEvdevTest, ShouldResumeExistingContactsOnStart) {
ui::TouchEventParams ev = dispatched_event(0);
EXPECT_EQ(ET_TOUCH_PRESSED, ev.type);
- EXPECT_EQ(0, ev.touch_id);
+ EXPECT_EQ(0, ev.slot);
EXPECT_FLOAT_EQ(50.f, ev.radii.x());
EXPECT_FLOAT_EQ(0.f, ev.radii.y());
EXPECT_FLOAT_EQ(0.50196081f, ev.pressure);
@@ -530,12 +530,12 @@ TEST_F(TouchEventConverterEvdevTest,
ui::TouchEventParams ev0 = dispatched_event(0);
ui::TouchEventParams ev1 = dispatched_event(1);
- EXPECT_EQ(0, ev0.touch_id);
+ EXPECT_EQ(0, ev0.slot);
EXPECT_EQ(999, ev0.location.x());
EXPECT_EQ(888, ev0.location.y());
EXPECT_FLOAT_EQ(0.21568628f, ev0.pressure);
- EXPECT_EQ(1, ev1.touch_id);
+ EXPECT_EQ(1, ev1.slot);
EXPECT_EQ(777, ev1.location.x());
EXPECT_EQ(666, ev1.location.y());
EXPECT_FLOAT_EQ(0.17254902f, ev1.pressure);
« no previous file with comments | « ui/events/ozone/evdev/event_factory_evdev.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698