| 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_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ | 5 #ifndef CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ |
| 6 #define CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ | 6 #define CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
| 10 #include "content/common/input/event_with_latency_info.h" | 10 #include "content/common/input/event_with_latency_info.h" |
| 11 #include "content/common/input/input_event_ack_state.h" | 11 #include "content/common/input/input_event_ack_state.h" |
| 12 #include "content/common/input/input_event_dispatch_type.h" | 12 #include "content/common/input/input_event_dispatch_type.h" |
| 13 #include "content/common/input/web_input_event_queue.h" | 13 #include "content/common/input/web_input_event_queue.h" |
| 14 #include "third_party/WebKit/public/web/WebInputEvent.h" | 14 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 15 #include "ui/latency_info/latency_info.h" | 15 #include "ui/events/latency_info.h" |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 | 18 |
| 19 template <typename BaseClass, typename BaseType> | 19 template <typename BaseClass, typename BaseType> |
| 20 class EventWithDispatchType : public BaseClass { | 20 class EventWithDispatchType : public BaseClass { |
| 21 public: | 21 public: |
| 22 EventWithDispatchType(const BaseType& e, | 22 EventWithDispatchType(const BaseType& e, |
| 23 const ui::LatencyInfo& l, | 23 const ui::LatencyInfo& l, |
| 24 InputEventDispatchType t) | 24 InputEventDispatchType t) |
| 25 : BaseClass(e, l), type(t) {} | 25 : BaseClass(e, l), type(t) {} |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 MainThreadEventQueueClient* client_; | 112 MainThreadEventQueueClient* client_; |
| 113 WebInputEventQueue<PendingMouseWheelEvent> wheel_events_; | 113 WebInputEventQueue<PendingMouseWheelEvent> wheel_events_; |
| 114 WebInputEventQueue<PendingTouchEvent> touch_events_; | 114 WebInputEventQueue<PendingTouchEvent> touch_events_; |
| 115 | 115 |
| 116 DISALLOW_COPY_AND_ASSIGN(MainThreadEventQueue); | 116 DISALLOW_COPY_AND_ASSIGN(MainThreadEventQueue); |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 } // namespace content | 119 } // namespace content |
| 120 | 120 |
| 121 #endif // CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ | 121 #endif // CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ |
| OLD | NEW |