| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "components/mus/ws/event_matcher.h" | 5 #include "components/mus/ws/event_matcher.h" |
| 6 | 6 |
| 7 #include "ui/events/mojo/input_events_type_converters.h" | |
| 8 | |
| 9 namespace mus { | 7 namespace mus { |
| 10 namespace ws { | 8 namespace ws { |
| 11 | 9 |
| 12 EventMatcher::EventMatcher(const mojom::EventMatcher& matcher) | 10 EventMatcher::EventMatcher(const mojom::EventMatcher& matcher) |
| 13 : fields_to_match_(NONE), | 11 : fields_to_match_(NONE), |
| 14 event_type_(ui::ET_UNKNOWN), | 12 event_type_(ui::ET_UNKNOWN), |
| 15 event_flags_(ui::EF_NONE), | 13 event_flags_(ui::EF_NONE), |
| 16 ignore_event_flags_(ui::EF_NONE), | 14 ignore_event_flags_(ui::EF_NONE), |
| 17 keyboard_code_(ui::VKEY_UNKNOWN), | 15 keyboard_code_(ui::VKEY_UNKNOWN), |
| 18 pointer_type_(ui::EventPointerType::POINTER_TYPE_UNKNOWN) { | 16 pointer_type_(ui::EventPointerType::POINTER_TYPE_UNKNOWN) { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 event_type_ == other.event_type_ && | 104 event_type_ == other.event_type_ && |
| 107 event_flags_ == other.event_flags_ && | 105 event_flags_ == other.event_flags_ && |
| 108 ignore_event_flags_ == other.ignore_event_flags_ && | 106 ignore_event_flags_ == other.ignore_event_flags_ && |
| 109 keyboard_code_ == other.keyboard_code_ && | 107 keyboard_code_ == other.keyboard_code_ && |
| 110 pointer_type_ == other.pointer_type_ && | 108 pointer_type_ == other.pointer_type_ && |
| 111 pointer_region_ == other.pointer_region_; | 109 pointer_region_ == other.pointer_region_; |
| 112 } | 110 } |
| 113 | 111 |
| 114 } // namespace ws | 112 } // namespace ws |
| 115 } // namespace mus | 113 } // namespace mus |
| OLD | NEW |