| Index: components/test_runner/event_sender.cc
|
| diff --git a/components/test_runner/event_sender.cc b/components/test_runner/event_sender.cc
|
| index 58b8f1c179ad0271b0cfa6f2f8d1e08f2af055dd..52127c32c3251b70761dfa284ed0d5a4695a04d3 100644
|
| --- a/components/test_runner/event_sender.cc
|
| +++ b/components/test_runner/event_sender.cc
|
| @@ -2160,7 +2160,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();
|
|
|