OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 module mus.mojom; | 5 module mus.mojom; |
6 | 6 |
7 import "ui/events/mojo/event_constants.mojom"; | 7 import "ui/events/mojo/event_constants.mojom"; |
8 import "ui/events/mojo/keyboard_codes.mojom"; | 8 import "ui/events/mojo/keyboard_codes.mojom"; |
9 import "ui/gfx/geometry/mojo/geometry.mojom"; | 9 import "ui/gfx/geometry/mojo/geometry.mojom"; |
10 | 10 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 ui.mojom.AcceleratorPhase accelerator_phase; | 46 ui.mojom.AcceleratorPhase accelerator_phase; |
47 EventTypeMatcher? type_matcher; | 47 EventTypeMatcher? type_matcher; |
48 EventFlagsMatcher? flags_matcher; | 48 EventFlagsMatcher? flags_matcher; |
49 // These flags will be stripped from incoming events' flags when comparing | 49 // These flags will be stripped from incoming events' flags when comparing |
50 // against |flags_matcher|. | 50 // against |flags_matcher|. |
51 EventFlagsMatcher? ignore_flags_matcher; | 51 EventFlagsMatcher? ignore_flags_matcher; |
52 KeyEventMatcher? key_matcher; | 52 KeyEventMatcher? key_matcher; |
53 PointerKindMatcher? pointer_kind_matcher; | 53 PointerKindMatcher? pointer_kind_matcher; |
54 PointerLocationMatcher? pointer_location_matcher; | 54 PointerLocationMatcher? pointer_location_matcher; |
55 }; | 55 }; |
OLD | NEW |