| 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 "ui/events/mojo/event_struct_traits.h" | 5 #include "ui/events/mojo/event_struct_traits.h" |
| 6 | 6 |
| 7 #include "components/mus/public/interfaces/input_event_constants.mojom.h" | 7 #include "components/mus/public/interfaces/input_event_constants.mojom.h" |
| 8 #include "ui/events/event.h" | 8 #include "ui/events/event.h" |
| 9 #include "ui/events/event_utils.h" | 9 #include "ui/events/event_utils.h" |
| 10 #include "ui/events/keycodes/dom/keycode_converter.h" | 10 #include "ui/events/keycodes/dom/keycode_converter.h" |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 return false; | 308 return false; |
| 309 } | 309 } |
| 310 } | 310 } |
| 311 case mus::mojom::EventType::UNKNOWN: | 311 case mus::mojom::EventType::UNKNOWN: |
| 312 return false; | 312 return false; |
| 313 } | 313 } |
| 314 | 314 |
| 315 return false; | 315 return false; |
| 316 } | 316 } |
| 317 | 317 |
| 318 } // namespace mojo | 318 } // namespace mojo |
| OLD | NEW |