| 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 ui.mojom; | 5 module ui.mojom; |
| 6 | 6 |
| 7 import "cc/ipc/frame_sink_id.mojom"; | 7 import "cc/ipc/frame_sink_id.mojom"; |
| 8 import "cc/ipc/local_surface_id.mojom"; | 8 import "cc/ipc/local_surface_id.mojom"; |
| 9 import "services/ui/public/interfaces/cursor.mojom"; | 9 import "services/ui/public/interfaces/cursor/cursor.mojom"; |
| 10 import "services/ui/public/interfaces/event_matcher.mojom"; | 10 import "services/ui/public/interfaces/event_matcher.mojom"; |
| 11 import "services/ui/public/interfaces/window_manager_constants.mojom"; | 11 import "services/ui/public/interfaces/window_manager_constants.mojom"; |
| 12 import "services/ui/public/interfaces/window_tree_constants.mojom"; | 12 import "services/ui/public/interfaces/window_tree_constants.mojom"; |
| 13 import "skia/public/interfaces/bitmap.mojom"; | 13 import "skia/public/interfaces/bitmap.mojom"; |
| 14 import "ui/base/mojo/ui_base_types.mojom"; | 14 import "ui/base/mojo/ui_base_types.mojom"; |
| 15 import "ui/display/mojo/display.mojom"; | 15 import "ui/display/mojo/display.mojom"; |
| 16 import "ui/events/mojo/event.mojom"; | 16 import "ui/events/mojo/event.mojom"; |
| 17 import "ui/events/mojo/event_constants.mojom"; | 17 import "ui/events/mojo/event_constants.mojom"; |
| 18 import "ui/gfx/geometry/mojo/geometry.mojom"; | 18 import "ui/gfx/geometry/mojo/geometry.mojom"; |
| 19 | 19 |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 OnWmCreatedTopLevelWindow(uint32 change_id, uint32 window_id); | 293 OnWmCreatedTopLevelWindow(uint32 change_id, uint32 window_id); |
| 294 | 294 |
| 295 // See description in WindowManager::OnAccelerator(). |ack_id| is the value | 295 // See description in WindowManager::OnAccelerator(). |ack_id| is the value |
| 296 // that was passed to OnAccelerator(). If the accelerator is a pre-target | 296 // that was passed to OnAccelerator(). If the accelerator is a pre-target |
| 297 // handler and |event_result| is UNHANDLED, then |properties| is added to | 297 // handler and |event_result| is UNHANDLED, then |properties| is added to |
| 298 // the KeyEvent that is dispatched to the client with the focused window. | 298 // the KeyEvent that is dispatched to the client with the focused window. |
| 299 OnAcceleratorAck(uint32 ack_id, | 299 OnAcceleratorAck(uint32 ack_id, |
| 300 EventResult event_result, | 300 EventResult event_result, |
| 301 map<string, array<uint8>> properties); | 301 map<string, array<uint8>> properties); |
| 302 }; | 302 }; |
| OLD | NEW |