| 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 "components/mus/public/interfaces/input_event_constants.mojom"; | 7 import "components/mus/public/interfaces/input_event_constants.mojom"; |
| 8 import "components/mus/public/interfaces/input_event_matcher.mojom"; | 8 import "components/mus/public/interfaces/input_event_matcher.mojom"; |
| 9 import "components/mus/public/interfaces/input_events.mojom"; | 9 import "components/mus/public/interfaces/input_events.mojom"; |
| 10 import "components/mus/public/interfaces/input_key_codes.mojom"; | 10 import "components/mus/public/interfaces/input_key_codes.mojom"; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 interface WindowTreeHostClient { | 51 interface WindowTreeHostClient { |
| 52 // An accelerator registered via AddAccelerator() has been triggered. | 52 // An accelerator registered via AddAccelerator() has been triggered. |
| 53 OnAccelerator(uint32 id, Event event); | 53 OnAccelerator(uint32 id, Event event); |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 interface WindowTreeHostFactory { | 56 interface WindowTreeHostFactory { |
| 57 CreateWindowTreeHost(WindowTreeHost& window_tree_host, | 57 CreateWindowTreeHost(WindowTreeHost& window_tree_host, |
| 58 WindowTreeHostClient? host_client, | 58 WindowTreeHostClient? host_client, |
| 59 WindowTreeClient tree_client, | 59 WindowTreeClient tree_client, |
| 60 WindowManager? window_manager); | 60 WindowManagerDeprecated? window_manager); |
| 61 }; | 61 }; |
| OLD | NEW |