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

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

Issue 1749343004: Implement Wheel Gesture Scrolling on OSX. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ensure only high precision scroll begins are used Created 4 years, 9 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.
20 const int64_t kDefaultWheelScrollTransactionMs = 100; 20 // Set the default wheel transaction to 0ms until
21 // crbug.com/526463 is fully implemented.
22 const int64_t kDefaultWheelScrollTransactionMs = 0; // 100;
21 23
22 class QueuedWebMouseWheelEvent; 24 class QueuedWebMouseWheelEvent;
23 25
24 // Interface with which MouseWheelEventQueue can forward mouse wheel events, 26 // Interface with which MouseWheelEventQueue can forward mouse wheel events,
25 // and dispatch mouse wheel event responses. 27 // and dispatch mouse wheel event responses.
26 class CONTENT_EXPORT MouseWheelEventQueueClient { 28 class CONTENT_EXPORT MouseWheelEventQueueClient {
27 public: 29 public:
28 virtual ~MouseWheelEventQueueClient() {} 30 virtual ~MouseWheelEventQueueClient() {}
29 31
30 virtual void SendMouseWheelEventImmediately( 32 virtual void SendMouseWheelEventImmediately(
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 return !wheel_queue_.empty() || event_sent_for_gesture_ack_; 71 return !wheel_queue_.empty() || event_sent_for_gesture_ack_;
70 } 72 }
71 73
72 size_t queued_size() const { return wheel_queue_.size(); } 74 size_t queued_size() const { return wheel_queue_.size(); }
73 bool event_in_flight() const { 75 bool event_in_flight() const {
74 return event_sent_for_gesture_ack_ != nullptr; 76 return event_sent_for_gesture_ack_ != nullptr;
75 } 77 }
76 78
77 private: 79 private:
78 void TryForwardNextEventToRenderer(); 80 void TryForwardNextEventToRenderer();
79 void SendScrollEnd(blink::WebGestureEvent update_event); 81 void SendScrollEnd(blink::WebGestureEvent update_event, bool synthetic);
80 void SendGesture(const GestureEventWithLatencyInfo& gesture); 82 void SendScrollBegin(const GestureEventWithLatencyInfo& gesture_update,
83 bool synthetic);
81 84
82 MouseWheelEventQueueClient* client_; 85 MouseWheelEventQueueClient* client_;
83 bool needs_scroll_begin_;
84 base::OneShotTimer scroll_end_timer_; 86 base::OneShotTimer scroll_end_timer_;
85 87
86 typedef std::deque<QueuedWebMouseWheelEvent*> WheelEventQueue; 88 typedef std::deque<QueuedWebMouseWheelEvent*> WheelEventQueue;
87 WheelEventQueue wheel_queue_; 89 WheelEventQueue wheel_queue_;
88 scoped_ptr<QueuedWebMouseWheelEvent> event_sent_for_gesture_ack_; 90 scoped_ptr<QueuedWebMouseWheelEvent> event_sent_for_gesture_ack_;
91
92 // True if a non-synthetic GSB needs to be sent before a GSU is sent.
93 bool needs_scroll_begin_;
94
95 // True if a non-synthetic GSE needs to be sent because a non-synthetic
96 // GSB has been sent in the past.
97 bool needs_scroll_end_;
98
89 bool send_gestures_; 99 bool send_gestures_;
90 int64_t scroll_transaction_ms_; 100 int64_t scroll_transaction_ms_;
91 blink::WebGestureDevice scrolling_device_; 101 blink::WebGestureDevice scrolling_device_;
92 102
93 DISALLOW_COPY_AND_ASSIGN(MouseWheelEventQueue); 103 DISALLOW_COPY_AND_ASSIGN(MouseWheelEventQueue);
94 }; 104 };
95 105
96 } // namespace content 106 } // namespace content
97 107
98 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_MOUSE_WHEEL_EVENT_QUEUE_H_ 108 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_MOUSE_WHEEL_EVENT_QUEUE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698