| 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_COCOA_TEST_EVENT_UTILS_H_ | 5 #ifndef UI_EVENTS_TEST_COCOA_TEST_EVENT_UTILS_H_ |
| 6 #define UI_EVENTS_TEST_COCOA_TEST_EVENT_UTILS_H_ | 6 #define UI_EVENTS_TEST_COCOA_TEST_EVENT_UTILS_H_ |
| 7 | 7 |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #import <objc/objc-class.h> | 10 #import <objc/objc-class.h> |
| 11 | 11 |
| 12 #include "ui/events/keycodes/dom/dom_key.h" |
| 12 #include "ui/events/keycodes/keyboard_codes.h" | 13 #include "ui/events/keycodes/keyboard_codes.h" |
| 13 | 14 |
| 14 namespace cocoa_test_event_utils { | 15 namespace cocoa_test_event_utils { |
| 15 | 16 |
| 16 // Create synthetic mouse events for testing. Currently these are very | 17 // Create synthetic mouse events for testing. Currently these are very |
| 17 // basic, flesh out as needed. Points are all in window coordinates; | 18 // basic, flesh out as needed. Points are all in window coordinates; |
| 18 // where the window is not specified, coordinate system is undefined | 19 // where the window is not specified, coordinate system is undefined |
| 19 // (but will be repeated when the event is queried). | 20 // (but will be repeated when the event is queried). |
| 20 NSEvent* MouseEventAtPoint(NSPoint point, NSEventType type, | 21 NSEvent* MouseEventAtPoint(NSPoint point, NSEventType type, |
| 21 NSUInteger modifiers); | 22 NSUInteger modifiers); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 // Return an "other" event with the given type. | 61 // Return an "other" event with the given type. |
| 61 NSEvent* OtherEventWithType(NSEventType event_type); | 62 NSEvent* OtherEventWithType(NSEventType event_type); |
| 62 | 63 |
| 63 // Time interval since system startup. Tests shouldn't rely on this. | 64 // Time interval since system startup. Tests shouldn't rely on this. |
| 64 NSTimeInterval TimeIntervalSinceSystemStartup(); | 65 NSTimeInterval TimeIntervalSinceSystemStartup(); |
| 65 | 66 |
| 66 // Creates a key event in a particular window. | 67 // Creates a key event in a particular window. |
| 67 NSEvent* SynthesizeKeyEvent(NSWindow* window, | 68 NSEvent* SynthesizeKeyEvent(NSWindow* window, |
| 68 bool keyDown, | 69 bool keyDown, |
| 69 ui::KeyboardCode keycode, | 70 ui::KeyboardCode keycode, |
| 70 NSUInteger flags); | 71 NSUInteger flags, |
| 72 ui::DomKey dom_key = ui::DomKey::NONE); |
| 71 | 73 |
| 72 } // namespace cocoa_test_event_utils | 74 } // namespace cocoa_test_event_utils |
| 73 | 75 |
| 74 #endif // UI_EVENTS_TEST_COCOA_TEST_EVENT_UTILS_H_ | 76 #endif // UI_EVENTS_TEST_COCOA_TEST_EVENT_UTILS_H_ |
| OLD | NEW |