| OLD | NEW |
| 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 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "base/time/time.h" | 11 #include "base/time/time.h" |
| 12 #include "base/timer/timer.h" | 12 #include "base/timer/timer.h" |
| 13 #include "content/browser/renderer_host/event_with_latency_info.h" | 13 #include "content/browser/renderer_host/event_with_latency_info.h" |
| 14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 15 #include "content/common/input/input_event_ack_state.h" | 15 #include "content/common/input/input_event_ack_state.h" |
| 16 #include "third_party/WebKit/public/web/WebInputEvent.h" | 16 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 | 19 |
| 20 // The duration in which a ScrollEnd will be sent after the last | 20 // The duration in which a ScrollEnd will be sent after the last |
| 21 // ScrollUpdate was sent for wheel based gesture scrolls. | 21 // ScrollUpdate was sent for wheel based gesture scrolls. |
| 22 // This value is used only if |enable_scroll_latching_| is true. | 22 // This value is used only if |enable_scroll_latching_| is true. |
| 23 const int64_t kDefaultWheelScrollLatchingTransactionMs = 100; | 23 const int64_t kDefaultWheelScrollLatchingTransactionMs = 100; |
| 24 | 24 |
| 25 class QueuedWebMouseWheelEvent; | 25 class QueuedWebMouseWheelEvent; |
| 26 | 26 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 | 102 |
| 103 int64_t scroll_transaction_ms_; | 103 int64_t scroll_transaction_ms_; |
| 104 blink::WebGestureDevice scrolling_device_; | 104 blink::WebGestureDevice scrolling_device_; |
| 105 | 105 |
| 106 DISALLOW_COPY_AND_ASSIGN(MouseWheelEventQueue); | 106 DISALLOW_COPY_AND_ASSIGN(MouseWheelEventQueue); |
| 107 }; | 107 }; |
| 108 | 108 |
| 109 } // namespace content | 109 } // namespace content |
| 110 | 110 |
| 111 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_MOUSE_WHEEL_EVENT_QUEUE_H_ | 111 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_MOUSE_WHEEL_EVENT_QUEUE_H_ |
| OLD | NEW |