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

Side by Side Diff: components/test_runner/event_sender.h

Issue 2173073003: Move WebInputEvent into public/platform from public/web (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gn build failure with android 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
« no previous file with comments | « no previous file | components/test_runner/event_sender.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | components/test_runner/event_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698