| Index: content/browser/renderer_host/input/touch_event_queue.h
|
| diff --git a/content/browser/renderer_host/input/touch_event_queue.h b/content/browser/renderer_host/input/touch_event_queue.h
|
| index 810a5b5b22de56734ce924d7126c31360fd9c4b5..cdd5d29ae55938c981118945b7d6eae4650c40f6 100644
|
| --- a/content/browser/renderer_host/input/touch_event_queue.h
|
| +++ b/content/browser/renderer_host/input/touch_event_queue.h
|
| @@ -164,8 +164,9 @@ class CONTENT_EXPORT TouchEventQueue {
|
| // Safely pop the head of the queue.
|
| scoped_ptr<CoalescedWebTouchEvent> PopTouchEvent();
|
|
|
| - // Dispatch |touch| to the client.
|
| - void SendTouchEventImmediately(const TouchEventWithLatencyInfo& touch);
|
| + // Dispatch |touch| to the client. Before dispatching, updates pointer
|
| + // states in touchmove events for pointers that have not changed position.
|
| + void SendTouchEventImmediately(TouchEventWithLatencyInfo* touch);
|
|
|
| enum PreFilterResult {
|
| ACK_WITH_NO_CONSUMER_EXISTS,
|
| @@ -236,6 +237,9 @@ class CONTENT_EXPORT TouchEventQueue {
|
| // mode.
|
| const TouchScrollingMode touch_scrolling_mode_;
|
|
|
| + // Event is saved to compare pointer positions for new touchmove events.
|
| + scoped_ptr<blink::WebTouchEvent> last_sent_touchevent_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(TouchEventQueue);
|
| };
|
|
|
|
|