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_OZONE_PUBLIC_SYSTEM_INPUT_INJECTOR_H_ | 5 #ifndef UI_OZONE_PUBLIC_SYSTEM_INPUT_INJECTOR_H_ |
6 #define UI_OZONE_PUBLIC_SYSTEM_INPUT_INJECTOR_H_ | 6 #define UI_OZONE_PUBLIC_SYSTEM_INPUT_INJECTOR_H_ |
7 | 7 |
| 8 #include <memory> |
| 9 |
8 #include "base/macros.h" | 10 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | |
10 #include "ui/events/event.h" | 11 #include "ui/events/event.h" |
11 #include "ui/events/keycodes/dom/keycode_converter.h" | 12 #include "ui/events/keycodes/dom/keycode_converter.h" |
12 #include "ui/gfx/geometry/point_f.h" | 13 #include "ui/gfx/geometry/point_f.h" |
13 #include "ui/ozone/ozone_export.h" | 14 #include "ui/ozone/ozone_export.h" |
14 | 15 |
15 namespace gfx { | 16 namespace gfx { |
16 class PointF; | 17 class PointF; |
17 } // namespace gfx | 18 } // namespace gfx |
18 | 19 |
19 namespace ui { | 20 namespace ui { |
(...skipping 28 matching lines...) Expand all Loading... |
48 bool down, | 49 bool down, |
49 bool suppress_auto_repeat) = 0; | 50 bool suppress_auto_repeat) = 0; |
50 | 51 |
51 private: | 52 private: |
52 DISALLOW_COPY_AND_ASSIGN(SystemInputInjector); | 53 DISALLOW_COPY_AND_ASSIGN(SystemInputInjector); |
53 }; | 54 }; |
54 | 55 |
55 } // namespace ui | 56 } // namespace ui |
56 | 57 |
57 #endif // UI_OZONE_PUBLIC_SYSTEM_INPUT_INJECTOR_H_ | 58 #endif // UI_OZONE_PUBLIC_SYSTEM_INPUT_INJECTOR_H_ |
OLD | NEW |