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

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

Issue 2581943003: Move WebMouseWheelEvent into its own header file. (Closed)
Patch Set: Fix mac unittest Created 4 years 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 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/WebInputEvent.h"
22 #include "third_party/WebKit/public/platform/WebInputEventResult.h" 22 #include "third_party/WebKit/public/platform/WebInputEventResult.h"
23 #include "third_party/WebKit/public/platform/WebMouseWheelEvent.h"
23 #include "third_party/WebKit/public/platform/WebPoint.h" 24 #include "third_party/WebKit/public/platform/WebPoint.h"
24 #include "third_party/WebKit/public/platform/WebTouchPoint.h" 25 #include "third_party/WebKit/public/platform/WebTouchPoint.h"
25 26
26 namespace blink { 27 namespace blink {
27 class WebFrameWidget; 28 class WebFrameWidget;
28 class WebLocalFrame; 29 class WebLocalFrame;
29 class WebView; 30 class WebView;
30 class WebWidget; 31 class WebWidget;
31 struct WebContextMenuData; 32 struct WebContextMenuData;
32 } 33 }
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 double last_event_timestamp_; 331 double last_event_timestamp_;
331 332
332 base::WeakPtrFactory<EventSender> weak_factory_; 333 base::WeakPtrFactory<EventSender> weak_factory_;
333 334
334 DISALLOW_COPY_AND_ASSIGN(EventSender); 335 DISALLOW_COPY_AND_ASSIGN(EventSender);
335 }; 336 };
336 337
337 } // namespace test_runner 338 } // namespace test_runner
338 339
339 #endif // COMPONENTS_TEST_RUNNER_EVENT_SENDER_H_ 340 #endif // COMPONENTS_TEST_RUNNER_EVENT_SENDER_H_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/chrome_render_widget_host_view_mac_history_swiper_unit_test.mm ('k') | content/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698