| Index: ui/aura/gestures/gesture_recognizer_unittest.cc
|
| diff --git a/ui/aura/gestures/gesture_recognizer_unittest.cc b/ui/aura/gestures/gesture_recognizer_unittest.cc
|
| index f1b51d8dd1e49df336cc1df7493b38ef229b5d97..6bbf1828d48bad27d1ae2bb89d564a5c84aca90b 100644
|
| --- a/ui/aura/gestures/gesture_recognizer_unittest.cc
|
| +++ b/ui/aura/gestures/gesture_recognizer_unittest.cc
|
| @@ -350,6 +350,8 @@ class QueueTouchEventDelegate : public GestureEventConsumeDelegate {
|
| if (queue_events_) {
|
| queue_.push(new ui::TouchEvent(*event, window_, window_));
|
| event->StopPropagation();
|
| + CHECK(window_);
|
| + window_->GetHost()->dispatcher()->OnForwardingAsyncTouchEvent(event);
|
| }
|
| }
|
|
|
| @@ -4229,7 +4231,7 @@ TEST_F(GestureRecognizerTest, GestureEventSmallPinchEnabled) {
|
|
|
| // Tests that delaying the ack of a touch release doesn't trigger a long press
|
| // gesture.
|
| -TEST_F(GestureRecognizerTest, DISABLED_EagerGestureDetection) {
|
| +TEST_F(GestureRecognizerTest, EagerGestureDetection) {
|
| scoped_ptr<QueueTouchEventDelegate> delegate(
|
| new QueueTouchEventDelegate(host()->dispatcher()));
|
| TimedEvents tes;
|
|
|