OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "cc/ipc/surface_id.mojom"; | 9 import "cc/ipc/surface_id.mojom"; |
10 import "cc/ipc/surface_info.mojom"; | 10 import "cc/ipc/surface_info.mojom"; |
11 import "cc/ipc/mojo_compositor_frame_sink.mojom"; | 11 import "cc/ipc/mojo_compositor_frame_sink.mojom"; |
12 import "services/ui/public/interfaces/cursor.mojom"; | 12 import "services/ui/public/interfaces/cursor/cursor.mojom"; |
13 import "services/ui/public/interfaces/event_matcher.mojom"; | 13 import "services/ui/public/interfaces/event_matcher.mojom"; |
14 import "services/ui/public/interfaces/mus_constants.mojom"; | 14 import "services/ui/public/interfaces/mus_constants.mojom"; |
15 import "services/ui/public/interfaces/window_manager.mojom"; | 15 import "services/ui/public/interfaces/window_manager.mojom"; |
16 import "services/ui/public/interfaces/window_manager_constants.mojom"; | 16 import "services/ui/public/interfaces/window_manager_constants.mojom"; |
17 import "services/ui/public/interfaces/window_tree_constants.mojom"; | 17 import "services/ui/public/interfaces/window_tree_constants.mojom"; |
18 import "skia/public/interfaces/bitmap.mojom"; | 18 import "skia/public/interfaces/bitmap.mojom"; |
19 import "ui/base/mojo/ui_base_types.mojom"; | 19 import "ui/base/mojo/ui_base_types.mojom"; |
20 import "ui/events/mojo/event.mojom"; | 20 import "ui/events/mojo/event.mojom"; |
21 import "ui/events/mojo/event_constants.mojom"; | 21 import "ui/events/mojo/event_constants.mojom"; |
22 import "ui/gfx/geometry/mojo/geometry.mojom"; | 22 import "ui/gfx/geometry/mojo/geometry.mojom"; |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
532 // See description of WindowManager for details. | 532 // See description of WindowManager for details. |
533 GetWindowManager(associated WindowManager& internal); | 533 GetWindowManager(associated WindowManager& internal); |
534 }; | 534 }; |
535 | 535 |
536 // Mus provides this interface as a way for clients to connect and obtain a | 536 // Mus provides this interface as a way for clients to connect and obtain a |
537 // WindowTree handle with a supplied WindowTreeClient handle. The | 537 // WindowTree handle with a supplied WindowTreeClient handle. The |
538 // WindowTreeClient has no roots, use NewTopLevelWindow() to create one. | 538 // WindowTreeClient has no roots, use NewTopLevelWindow() to create one. |
539 interface WindowTreeFactory { | 539 interface WindowTreeFactory { |
540 CreateWindowTree(WindowTree& tree_request, WindowTreeClient client); | 540 CreateWindowTree(WindowTree& tree_request, WindowTreeClient client); |
541 }; | 541 }; |
OLD | NEW |