| Index: content/renderer/input/main_thread_event_queue.h
|
| diff --git a/content/renderer/input/main_thread_event_queue.h b/content/renderer/input/main_thread_event_queue.h
|
| index 6b0bd9bd2818e0dfc88daf2dd53c39834312ac8c..6ea6a28497bf02cf72fbf51ffecec19a589eaa66 100644
|
| --- a/content/renderer/input/main_thread_event_queue.h
|
| +++ b/content/renderer/input/main_thread_event_queue.h
|
| @@ -29,6 +29,9 @@ class EventWithDispatchType : public ScopedWebInputEventWithLatencyInfo {
|
|
|
| const std::deque<uint32_t>& eventsToAck() const { return eventsToAck_; }
|
| InputEventDispatchType dispatchType() const { return dispatch_type_; }
|
| + void setDispatchType(InputEventDispatchType dispatch_type) {
|
| + dispatch_type_ = dispatch_type;
|
| + }
|
|
|
| private:
|
| InputEventDispatchType dispatch_type_;
|
| @@ -134,6 +137,8 @@ class CONTENT_EXPORT MainThreadEventQueue
|
|
|
| base::Lock event_queue_lock_;
|
| scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_;
|
| + // True if waiting on first touch move after a touch start.
|
| + bool waiting_for_first_touch_move_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(MainThreadEventQueue);
|
| };
|
|
|