| 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 UI_EVENTS_TEST_EVENT_GENERATOR_H_ | 5 #ifndef UI_EVENTS_TEST_EVENT_GENERATOR_H_ |
| 6 #define UI_EVENTS_TEST_EVENT_GENERATOR_H_ | 6 #define UI_EVENTS_TEST_EVENT_GENERATOR_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 15 #include "ui/events/event_constants.h" | 15 #include "ui/events/event_constants.h" |
| 16 #include "ui/events/keycodes/keyboard_codes.h" | 16 #include "ui/events/keycodes/keyboard_codes.h" |
| 17 #include "ui/gfx/geometry/point.h" | 17 #include "ui/gfx/geometry/point.h" |
| 18 #include "ui/gfx/native_widget_types.h" | 18 #include "ui/gfx/native_widget_types.h" |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 class TickClock; | 21 class TickClock; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace gfx { |
| 25 class PointF; |
| 26 } |
| 27 |
| 24 namespace ui { | 28 namespace ui { |
| 25 class Event; | 29 class Event; |
| 26 class EventProcessor; | 30 class EventProcessor; |
| 27 class EventSource; | 31 class EventSource; |
| 28 class EventTarget; | 32 class EventTarget; |
| 29 class KeyEvent; | 33 class KeyEvent; |
| 30 class MouseEvent; | 34 class MouseEvent; |
| 31 class ScrollEvent; | 35 class ScrollEvent; |
| 32 class TouchEvent; | 36 class TouchEvent; |
| 33 | 37 |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 bool targeting_application_; | 402 bool targeting_application_; |
| 399 scoped_ptr<base::TickClock> tick_clock_; | 403 scoped_ptr<base::TickClock> tick_clock_; |
| 400 | 404 |
| 401 DISALLOW_COPY_AND_ASSIGN(EventGenerator); | 405 DISALLOW_COPY_AND_ASSIGN(EventGenerator); |
| 402 }; | 406 }; |
| 403 | 407 |
| 404 } // namespace test | 408 } // namespace test |
| 405 } // namespace ui | 409 } // namespace ui |
| 406 | 410 |
| 407 #endif // UI_EVENTS_TEST_EVENT_GENERATOR_H_ | 411 #endif // UI_EVENTS_TEST_EVENT_GENERATOR_H_ |
| OLD | NEW |