Chromium Code Reviews| Index: content/renderer/input/main_thread_event_queue.cc |
| diff --git a/content/renderer/input/main_thread_event_queue.cc b/content/renderer/input/main_thread_event_queue.cc |
| index bc0fac27a04a573968c2fe49984a474078b7652c..a88981a85961003cb53401feceab08a59243bbb8 100644 |
| --- a/content/renderer/input/main_thread_event_queue.cc |
| +++ b/content/renderer/input/main_thread_event_queue.cc |
| @@ -41,6 +41,9 @@ MainThreadEventQueue::MainThreadEventQueue( |
| : routing_id_(routing_id), |
| client_(client), |
| is_flinging_(false), |
| + last_touch_start_forced_nonblocking_(false), |
| + enable_fling_passive_listener_flag_(base::FeatureList::IsEnabled( |
| + features::kPassiveEventListenersDueToFling)), |
| main_task_runner_(main_task_runner) {} |
| MainThreadEventQueue::~MainThreadEventQueue() {} |
| @@ -57,10 +60,6 @@ bool MainThreadEventQueue::HandleEvent( |
| bool non_blocking = original_dispatch_type == DISPATCH_TYPE_NON_BLOCKING || |
| ack_result == INPUT_EVENT_ACK_STATE_SET_NON_BLOCKING; |
| - |
| - InputEventDispatchType dispatch_type = |
| - non_blocking ? DISPATCH_TYPE_NON_BLOCKING : DISPATCH_TYPE_BLOCKING; |
| - |
| bool is_wheel = event->type == blink::WebInputEvent::MouseWheel; |
| bool is_touch = blink::WebInputEvent::isTouchEventType(event->type); |
| @@ -74,6 +73,21 @@ bool MainThreadEventQueue::HandleEvent( |
| touch_event->dispatchType = |
| blink::WebInputEvent::ListenersNonBlockingPassive; |
| } |
| + if (touch_event->type == blink::WebInputEvent::TouchStart) |
| + last_touch_start_forced_nonblocking_ = false; |
| + |
| + if (enable_fling_passive_listener_flag_ && |
| + touch_event->touchStartOrFirstTouchMove && |
| + touch_event->dispatchType == blink::WebInputEvent::Blocking) { |
| + // If the touch start is forced to be passive due to fling, its following |
| + // touch move should also be passive. |
| + if (is_flinging_ || last_touch_start_forced_nonblocking_) { |
| + touch_event->dispatchType = |
| + blink::WebInputEvent::ListenersForcedNonBlockingDueToFling; |
| + non_blocking = true; |
| + last_touch_start_forced_nonblocking_ = true; |
|
tdresser
2016/08/18 12:43:53
Sorry, let's call this last_touch_start_forced_non
|
| + } |
| + } |
| } |
| if (is_wheel && non_blocking) { |
| // Adjust the |dispatchType| on the event since the compositor |
| @@ -82,6 +96,8 @@ bool MainThreadEventQueue::HandleEvent( |
| ->dispatchType = blink::WebInputEvent::ListenersNonBlockingPassive; |
| } |
| + InputEventDispatchType dispatch_type = |
| + non_blocking ? DISPATCH_TYPE_NON_BLOCKING : DISPATCH_TYPE_BLOCKING; |
| std::unique_ptr<EventWithDispatchType> event_with_dispatch_type( |
| new EventWithDispatchType(std::move(event), latency, dispatch_type)); |