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

Unified Diff: content/browser/renderer_host/render_widget_host_view_aura_unittest.cc

Issue 1120293003: Make sure send one WebTouchEvent ack per ui::TouchEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use touch_id and add unittest Created 5 years, 7 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: content/browser/renderer_host/render_widget_host_view_aura_unittest.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_aura_unittest.cc b/content/browser/renderer_host/render_widget_host_view_aura_unittest.cc
index aba2b57322ef07d0fe0960cff38befe6ac9c07b5..8e5cfd643e7c890f797b1b681bafc796bee7dd29 100644
--- a/content/browser/renderer_host/render_widget_host_view_aura_unittest.cc
+++ b/content/browser/renderer_host/render_widget_host_view_aura_unittest.cc
@@ -303,6 +303,7 @@ class FakeRenderWidgetHostViewAura : public RenderWidgetHostViewAura {
touch_event_.reset(
jdduke (slow) 2015/05/07 15:20:28 Hmm, why do have separate bookkeeping here for tou
lanwei 2015/05/08 02:12:32 Tim, I saw that you added this touch_event_, can y
tdresser 2015/05/08 11:59:23 This was put here to avoid code churn (or out of l
new blink::WebTouchEvent(ui::CreateWebTouchEventFromMotionEvent(
pointer_state(), event->may_cause_scrolling())));
+ SetTouchPointStateStationary(touch_event_.get(), event->touch_id());
} else {
// Never create a WebTouchEvent with 0 touch points.
touch_event_.reset();
@@ -1124,6 +1125,76 @@ TEST_F(RenderWidgetHostViewAuraTest, TouchEventState) {
EXPECT_EQ(nullptr, view_->touch_event_);
}
+// Checks that touch-event state is maintained correctly for multiple touch
+// points.
+TEST_F(RenderWidgetHostViewAuraTest, MultiTouchPointsStates) {
+ view_->InitAsChild(NULL);
+ view_->Show();
+ GetSentMessageCountAndResetSink();
+
+ ui::TouchEvent press(ui::ET_TOUCH_PRESSED, gfx::Point(30, 30), 0,
+ ui::EventTimeForNow());
+
+ view_->OnTouchEvent(&press);
+ EXPECT_EQ(blink::WebInputEvent::TouchStart, view_->touch_event_->type);
+ EXPECT_EQ(1U, view_->touch_event_->touchesLength);
+ EXPECT_EQ(blink::WebTouchPoint::StatePressed,
+ view_->touch_event_->touches[0].state);
+
+ ui::TouchEvent move(ui::ET_TOUCH_MOVED, gfx::Point(20, 20), 0,
+ ui::EventTimeForNow());
+
+ view_->OnTouchEvent(&move);
+ EXPECT_EQ(blink::WebInputEvent::TouchMove, view_->touch_event_->type);
+ EXPECT_EQ(1U, view_->touch_event_->touchesLength);
+ EXPECT_EQ(blink::WebTouchPoint::StateMoved,
+ view_->touch_event_->touches[0].state);
+
+ // For the second touchstart, only the state of the second touch point is
+ // StatePressed, the state of the first touch point is StateStationary.
+ ui::TouchEvent press1(ui::ET_TOUCH_PRESSED, gfx::Point(10, 10), 1,
tdresser 2015/05/07 12:13:06 nit: Can we use press1/press2 (or press0/press1) i
lanwei 2015/05/08 02:12:32 Done.
+ ui::EventTimeForNow());
+
+ view_->OnTouchEvent(&press1);
+ EXPECT_EQ(blink::WebInputEvent::TouchStart, view_->touch_event_->type);
+ EXPECT_EQ(2U, view_->touch_event_->touchesLength);
+ EXPECT_EQ(blink::WebTouchPoint::StateStationary,
+ view_->touch_event_->touches[0].state);
+ EXPECT_EQ(blink::WebTouchPoint::StatePressed,
+ view_->touch_event_->touches[1].state);
+
+ // For the second touchmove, only the state of the second touch point is
+ // StateMoved, the state of the first touch point is StateStationary.
+ ui::TouchEvent move1(ui::ET_TOUCH_MOVED, gfx::Point(30, 30), 1,
+ ui::EventTimeForNow());
+
+ view_->OnTouchEvent(&move1);
+ EXPECT_EQ(blink::WebInputEvent::TouchMove, view_->touch_event_->type);
+ EXPECT_EQ(2U, view_->touch_event_->touchesLength);
+ EXPECT_EQ(blink::WebTouchPoint::StateStationary,
+ view_->touch_event_->touches[0].state);
+ EXPECT_EQ(blink::WebTouchPoint::StateMoved,
+ view_->touch_event_->touches[1].state);
+
tdresser 2015/05/07 12:13:06 Can we add an additional move here, to test the ca
lanwei 2015/05/08 02:12:32 Done.
+ ui::TouchEvent cancel(ui::ET_TOUCH_CANCELLED, gfx::Point(20, 20), 0,
+ ui::EventTimeForNow());
+
+ // For the touchcancel, only the state of the current touch point is
+ // StateCancelled, the state of the other touch point is StateStationary.
+ view_->OnTouchEvent(&cancel);
+ EXPECT_EQ(blink::WebInputEvent::TouchCancel, view_->touch_event_->type);
+ EXPECT_EQ(1U, view_->touch_event_->touchesLength);
+ EXPECT_EQ(blink::WebTouchPoint::StateStationary,
+ view_->touch_event_->touches[0].state);
+ EXPECT_EQ(1, view_->touch_event_->touches[0].id);
+
+ ui::TouchEvent cancel1(ui::ET_TOUCH_CANCELLED, gfx::Point(30, 30), 1,
+ ui::EventTimeForNow());
+
+ view_->OnTouchEvent(&cancel1);
+ EXPECT_EQ(nullptr, view_->touch_event_);
+}
+
// Checks that touch-events are queued properly when there is a touch-event
// handler on the page.
TEST_F(RenderWidgetHostViewAuraTest, TouchEventSyncAsync) {

Powered by Google App Engine
This is Rietveld 408576698