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

Side by Side Diff: content/renderer/input/main_thread_event_queue.h

Issue 2111593003: Decouple EventWithLatencyInfo from WebInputEventTraits (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bug reference + web_contents_impl iwyu to .cc Created 4 years, 5 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_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 "content/common/input/web_input_event_traits.h"
14 #include "third_party/WebKit/public/web/WebInputEvent.h" 15 #include "third_party/WebKit/public/web/WebInputEvent.h"
15 #include "ui/events/latency_info.h" 16 #include "ui/events/latency_info.h"
16 17
17 namespace content { 18 namespace content {
18 19
19 template <typename BaseClass, typename BaseType> 20 template <typename BaseClass, typename BaseType>
20 class EventWithDispatchType : public BaseClass { 21 class EventWithDispatchType : public BaseClass {
21 public: 22 public:
22 EventWithDispatchType(const BaseType& e, 23 EventWithDispatchType(const BaseType& e,
23 const ui::LatencyInfo& l, 24 const ui::LatencyInfo& l,
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 // on the main thread. See crbug.com/624021 136 // on the main thread. See crbug.com/624021
136 std::unique_ptr<PendingMouseWheelEvent> in_flight_wheel_event_; 137 std::unique_ptr<PendingMouseWheelEvent> in_flight_wheel_event_;
137 std::unique_ptr<PendingTouchEvent> in_flight_touch_event_; 138 std::unique_ptr<PendingTouchEvent> in_flight_touch_event_;
138 139
139 DISALLOW_COPY_AND_ASSIGN(MainThreadEventQueue); 140 DISALLOW_COPY_AND_ASSIGN(MainThreadEventQueue);
140 }; 141 };
141 142
142 } // namespace content 143 } // namespace content
143 144
144 #endif // CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ 145 #endif // CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698