| 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 <queue> | 10 #include <queue> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <unordered_map> | 12 #include <unordered_map> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.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/WebInputEventResult.h" | 21 #include "third_party/WebKit/public/platform/WebInputEventResult.h" |
| 21 #include "third_party/WebKit/public/platform/WebPoint.h" | 22 #include "third_party/WebKit/public/platform/WebPoint.h" |
| 22 #include "third_party/WebKit/public/web/WebDragOperation.h" | |
| 23 #include "third_party/WebKit/public/web/WebInputEvent.h" | 23 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 24 #include "third_party/WebKit/public/web/WebTouchPoint.h" | 24 #include "third_party/WebKit/public/web/WebTouchPoint.h" |
| 25 | 25 |
| 26 namespace blink { | 26 namespace blink { |
| 27 class WebFrame; | 27 class WebFrame; |
| 28 class WebView; | 28 class WebView; |
| 29 struct WebContextMenuData; | 29 struct WebContextMenuData; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace gin { | 32 namespace gin { |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 double last_event_timestamp_; | 317 double last_event_timestamp_; |
| 318 | 318 |
| 319 base::WeakPtrFactory<EventSender> weak_factory_; | 319 base::WeakPtrFactory<EventSender> weak_factory_; |
| 320 | 320 |
| 321 DISALLOW_COPY_AND_ASSIGN(EventSender); | 321 DISALLOW_COPY_AND_ASSIGN(EventSender); |
| 322 }; | 322 }; |
| 323 | 323 |
| 324 } // namespace test_runner | 324 } // namespace test_runner |
| 325 | 325 |
| 326 #endif // COMPONENTS_TEST_RUNNER_EVENT_SENDER_H_ | 326 #endif // COMPONENTS_TEST_RUNNER_EVENT_SENDER_H_ |
| OLD | NEW |