| Index: components/test_runner/event_sender.cc
|
| diff --git a/components/test_runner/event_sender.cc b/components/test_runner/event_sender.cc
|
| index 7d6df6ece65a4f24a3a9073364bdf2ae71ca21fe..49a9b030d49a098da315dd062f8aa77053bdf0bb 100644
|
| --- a/components/test_runner/event_sender.cc
|
| +++ b/components/test_runner/event_sender.cc
|
| @@ -2011,7 +2011,9 @@ void EventSender::SendCurrentTouchEvent(WebInputEvent::Type type,
|
| WebTouchEvent touch_event;
|
| touch_event.type = type;
|
| touch_event.modifiers = touch_modifiers_;
|
| - touch_event.cancelable = touch_cancelable_;
|
| + touch_event.dispatchType = touch_cancelable_
|
| + ? WebInputEvent::Blocking
|
| + : WebInputEvent::EventNonBlocking;
|
| touch_event.timeStampSeconds = GetCurrentEventTimeSec();
|
| touch_event.movedBeyondSlopRegion = movedBeyondSlopRegion;
|
| touch_event.touchesLength = touch_points_.size();
|
|
|