| Index: content/common/input/web_touch_event_traits.cc
|
| diff --git a/content/common/input/web_touch_event_traits.cc b/content/common/input/web_touch_event_traits.cc
|
| index 535044cda4bb0f1ececf48d65cb72dea2f43dde4..031d4e10305599a480851553795873c5663ae88a 100644
|
| --- a/content/common/input/web_touch_event_traits.cc
|
| +++ b/content/common/input/web_touch_event_traits.cc
|
| @@ -55,7 +55,9 @@ void WebTouchEventTraits::ResetType(WebInputEvent::Type type,
|
| DCHECK(type != WebInputEvent::TouchScrollStarted);
|
|
|
| event->type = type;
|
| - event->cancelable = (type != WebInputEvent::TouchCancel);
|
| + event->dispatchType = type == WebInputEvent::TouchCancel
|
| + ? WebInputEvent::EventNonBlocking
|
| + : WebInputEvent::Blocking;
|
| event->timeStampSeconds = timestamp_sec;
|
| }
|
|
|
|
|