Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Side by Side Diff: content/browser/renderer_host/input/mouse_wheel_event_queue.h

Issue 2158423002: Wheel scroll latching enabled behind flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_MOUSE_WHEEL_EVENT_QUEUE_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_MOUSE_WHEEL_EVENT_QUEUE_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_MOUSE_WHEEL_EVENT_QUEUE_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_MOUSE_WHEEL_EVENT_QUEUE_H_
7 7
8 #include <deque> 8 #include <deque>
9 9
10 #include "base/time/time.h" 10 #include "base/time/time.h"
11 #include "content/browser/renderer_host/event_with_latency_info.h" 11 #include "content/browser/renderer_host/event_with_latency_info.h"
12 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
13 #include "content/common/input/input_event_ack_state.h" 13 #include "content/common/input/input_event_ack_state.h"
14 #include "third_party/WebKit/public/web/WebInputEvent.h" 14 #include "third_party/WebKit/public/web/WebInputEvent.h"
15 15
16 namespace content { 16 namespace content {
17 17
18 // The duration in which a ScrollEnd will be sent after the last 18 // The duration in which a ScrollEnd will be sent after the last
19 // ScrollUpdate was sent for wheel based gesture scrolls. 19 // ScrollUpdate was sent for wheel based gesture scrolls.
tdresser 2016/08/12 13:28:32 Indicate that this is only used if |enable_scroll_
sahel 2016/08/12 15:45:28 Done.
20 // Set the default wheel transaction to 0ms until 20 const int64_t kDefaultWheelScrollLatchingTransactionMs = 100;
21 // crbug.com/526463 is fully implemented.
22 const int64_t kDefaultWheelScrollTransactionMs = 0; // 100;
23 21
24 class QueuedWebMouseWheelEvent; 22 class QueuedWebMouseWheelEvent;
25 23
26 // Interface with which MouseWheelEventQueue can forward mouse wheel events, 24 // Interface with which MouseWheelEventQueue can forward mouse wheel events,
27 // and dispatch mouse wheel event responses. 25 // and dispatch mouse wheel event responses.
28 class CONTENT_EXPORT MouseWheelEventQueueClient { 26 class CONTENT_EXPORT MouseWheelEventQueueClient {
29 public: 27 public:
30 virtual ~MouseWheelEventQueueClient() {} 28 virtual ~MouseWheelEventQueueClient() {}
31 29
32 virtual void SendMouseWheelEventImmediately( 30 virtual void SendMouseWheelEventImmediately(
33 const MouseWheelEventWithLatencyInfo& event) = 0; 31 const MouseWheelEventWithLatencyInfo& event) = 0;
34 virtual void ForwardGestureEventWithLatencyInfo( 32 virtual void ForwardGestureEventWithLatencyInfo(
35 const blink::WebGestureEvent& event, 33 const blink::WebGestureEvent& event,
36 const ui::LatencyInfo& latency_info) = 0; 34 const ui::LatencyInfo& latency_info) = 0;
37 virtual void OnMouseWheelEventAck(const MouseWheelEventWithLatencyInfo& event, 35 virtual void OnMouseWheelEventAck(const MouseWheelEventWithLatencyInfo& event,
38 InputEventAckState ack_result) = 0; 36 InputEventAckState ack_result) = 0;
39 }; 37 };
40 38
41 // A queue for throttling and coalescing mouse wheel events. 39 // A queue for throttling and coalescing mouse wheel events.
42 class CONTENT_EXPORT MouseWheelEventQueue { 40 class CONTENT_EXPORT MouseWheelEventQueue {
43 public: 41 public:
44 // The |client| must outlive the MouseWheelEventQueue. |send_gestures| 42 // The |client| must outlive the MouseWheelEventQueue. |send_gestures|
45 // indicates whether mouse wheel events should generate 43 // indicates whether mouse wheel events should generate
46 // Scroll[Begin|Update|End] on unhandled acknowledge events. 44 // Scroll[Begin|Update|End] on unhandled acknowledge events.
47 // |scroll_transaction_ms| is the duration in which the 45 // |scroll_transaction_ms| is the duration in which the
48 // ScrollEnd should be sent after a ScrollUpdate. 46 // ScrollEnd should be sent after a ScrollUpdate.
49 MouseWheelEventQueue(MouseWheelEventQueueClient* client, 47 MouseWheelEventQueue(MouseWheelEventQueueClient* client,
50 int64_t scroll_transaction_ms); 48 bool enable_scroll_latching);
51 49
52 ~MouseWheelEventQueue(); 50 ~MouseWheelEventQueue();
53 51
54 // Adds an event to the queue. The event may be coalesced with previously 52 // Adds an event to the queue. The event may be coalesced with previously
55 // queued events (e.g. consecutive mouse-wheel events can be coalesced into a 53 // queued events (e.g. consecutive mouse-wheel events can be coalesced into a
56 // single mouse-wheel event). The event may also be immediately forwarded to 54 // single mouse-wheel event). The event may also be immediately forwarded to
57 // the renderer (e.g. when there are no other queued mouse-wheel event). 55 // the renderer (e.g. when there are no other queued mouse-wheel event).
58 void QueueEvent(const MouseWheelEventWithLatencyInfo& event); 56 void QueueEvent(const MouseWheelEventWithLatencyInfo& event);
59 57
60 // Notifies the queue that a mouse wheel event has been processed by the 58 // Notifies the queue that a mouse wheel event has been processed by the
(...skipping 29 matching lines...) Expand all
90 WheelEventQueue wheel_queue_; 88 WheelEventQueue wheel_queue_;
91 std::unique_ptr<QueuedWebMouseWheelEvent> event_sent_for_gesture_ack_; 89 std::unique_ptr<QueuedWebMouseWheelEvent> event_sent_for_gesture_ack_;
92 90
93 // True if a non-synthetic GSB needs to be sent before a GSU is sent. 91 // True if a non-synthetic GSB needs to be sent before a GSU is sent.
94 bool needs_scroll_begin_; 92 bool needs_scroll_begin_;
95 93
96 // True if a non-synthetic GSE needs to be sent because a non-synthetic 94 // True if a non-synthetic GSE needs to be sent because a non-synthetic
97 // GSB has been sent in the past. 95 // GSB has been sent in the past.
98 bool needs_scroll_end_; 96 bool needs_scroll_end_;
99 97
98 // True if the touchpad and wheel scroll latching is enabled.
99 bool enable_scroll_latching_;
100
100 int64_t scroll_transaction_ms_; 101 int64_t scroll_transaction_ms_;
101 blink::WebGestureDevice scrolling_device_; 102 blink::WebGestureDevice scrolling_device_;
102 103
103 DISALLOW_COPY_AND_ASSIGN(MouseWheelEventQueue); 104 DISALLOW_COPY_AND_ASSIGN(MouseWheelEventQueue);
104 }; 105 };
105 106
106 } // namespace content 107 } // namespace content
107 108
108 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_MOUSE_WHEEL_EVENT_QUEUE_H_ 109 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_MOUSE_WHEEL_EVENT_QUEUE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698