OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_TEST_RUNNER_EVENT_SENDER_H_ | 5 #ifndef COMPONENTS_TEST_RUNNER_EVENT_SENDER_H_ |
6 #define COMPONENTS_TEST_RUNNER_EVENT_SENDER_H_ | 6 #define COMPONENTS_TEST_RUNNER_EVENT_SENDER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 #include <queue> | 11 #include <queue> |
12 #include <string> | 12 #include <string> |
13 #include <unordered_map> | 13 #include <unordered_map> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "base/macros.h" | 16 #include "base/macros.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "build/build_config.h" | 18 #include "build/build_config.h" |
19 #include "third_party/WebKit/public/platform/WebDragData.h" | 19 #include "third_party/WebKit/public/platform/WebDragData.h" |
20 #include "third_party/WebKit/public/platform/WebDragOperation.h" | 20 #include "third_party/WebKit/public/platform/WebDragOperation.h" |
| 21 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
21 #include "third_party/WebKit/public/platform/WebInputEventResult.h" | 22 #include "third_party/WebKit/public/platform/WebInputEventResult.h" |
22 #include "third_party/WebKit/public/platform/WebPoint.h" | 23 #include "third_party/WebKit/public/platform/WebPoint.h" |
23 #include "third_party/WebKit/public/web/WebInputEvent.h" | 24 #include "third_party/WebKit/public/platform/WebTouchPoint.h" |
24 #include "third_party/WebKit/public/web/WebTouchPoint.h" | |
25 | 25 |
26 namespace blink { | 26 namespace blink { |
27 class WebLocalFrame; | 27 class WebLocalFrame; |
28 class WebView; | 28 class WebView; |
29 struct WebContextMenuData; | 29 struct WebContextMenuData; |
30 } | 30 } |
31 | 31 |
32 namespace gin { | 32 namespace gin { |
33 class Arguments; | 33 class Arguments; |
34 } | 34 } |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 double last_event_timestamp_; | 326 double last_event_timestamp_; |
327 | 327 |
328 base::WeakPtrFactory<EventSender> weak_factory_; | 328 base::WeakPtrFactory<EventSender> weak_factory_; |
329 | 329 |
330 DISALLOW_COPY_AND_ASSIGN(EventSender); | 330 DISALLOW_COPY_AND_ASSIGN(EventSender); |
331 }; | 331 }; |
332 | 332 |
333 } // namespace test_runner | 333 } // namespace test_runner |
334 | 334 |
335 #endif // COMPONENTS_TEST_RUNNER_EVENT_SENDER_H_ | 335 #endif // COMPONENTS_TEST_RUNNER_EVENT_SENDER_H_ |
OLD | NEW |