Commit 67a11888 authored by jdduke's avatar jdduke Committed by Commit bot

Fix uninit access in TouchEventQueue

Properly initialize |drop_remaining_touches_in_sequence_| after
its addition in https://codereview.chromium.org/586553002/.

TBR=rbyers@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/581313003

Cr-Commit-Position: refs/heads/master@{#296245}
parent a9a4b7da
...@@ -374,6 +374,7 @@ TouchEventQueue::TouchEventQueue(TouchEventQueueClient* client, ...@@ -374,6 +374,7 @@ TouchEventQueue::TouchEventQueue(TouchEventQueueClient* client,
dispatching_touch_ack_(NULL), dispatching_touch_ack_(NULL),
dispatching_touch_(false), dispatching_touch_(false),
has_handlers_(true), has_handlers_(true),
drop_remaining_touches_in_sequence_(false),
touchmove_slop_suppressor_(new TouchMoveSlopSuppressor( touchmove_slop_suppressor_(new TouchMoveSlopSuppressor(
config.touchmove_slop_suppression_length_dips)), config.touchmove_slop_suppression_length_dips)),
send_touch_events_async_(false), send_touch_events_async_(false),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment