| 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 #ifndef UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ | 5 #ifndef UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ |
| 6 #define UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ | 6 #define UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 class InFlightVisibleChange; | 61 class InFlightVisibleChange; |
| 62 class MusContextFactory; | 62 class MusContextFactory; |
| 63 class WindowMus; | 63 class WindowMus; |
| 64 class WindowPortMus; | 64 class WindowPortMus; |
| 65 class WindowTreeClientDelegate; | 65 class WindowTreeClientDelegate; |
| 66 class WindowTreeClientPrivate; | 66 class WindowTreeClientPrivate; |
| 67 class WindowTreeClientObserver; | 67 class WindowTreeClientObserver; |
| 68 class WindowTreeClientTestObserver; | 68 class WindowTreeClientTestObserver; |
| 69 class WindowTreeHostMus; | 69 class WindowTreeHostMus; |
| 70 | 70 |
| 71 namespace client { | |
| 72 class CaptureClient; | |
| 73 } | |
| 74 | |
| 75 using EventResultCallback = base::Callback<void(ui::mojom::EventResult)>; | 71 using EventResultCallback = base::Callback<void(ui::mojom::EventResult)>; |
| 76 | 72 |
| 77 // Manages the connection with mus. | 73 // Manages the connection with mus. |
| 78 // | 74 // |
| 79 // WindowTreeClient is owned by the creator. Generally when the delegate gets | 75 // WindowTreeClient is owned by the creator. Generally when the delegate gets |
| 80 // one of OnEmbedRootDestroyed() or OnLostConnection() it should delete the | 76 // one of OnEmbedRootDestroyed() or OnLostConnection() it should delete the |
| 81 // WindowTreeClient. | 77 // WindowTreeClient. |
| 82 // | 78 // |
| 83 // When WindowTreeClient is deleted all windows are deleted (and observers | 79 // When WindowTreeClient is deleted all windows are deleted (and observers |
| 84 // notified). | 80 // notified). |
| (...skipping 23 matching lines...) Expand all Loading... |
| 108 | 104 |
| 109 service_manager::Connector* connector() { return connector_; } | 105 service_manager::Connector* connector() { return connector_; } |
| 110 ui::Gpu* gpu() { return gpu_.get(); } | 106 ui::Gpu* gpu() { return gpu_.get(); } |
| 111 CaptureSynchronizer* capture_synchronizer() { | 107 CaptureSynchronizer* capture_synchronizer() { |
| 112 return capture_synchronizer_.get(); | 108 return capture_synchronizer_.get(); |
| 113 } | 109 } |
| 114 | 110 |
| 115 bool connected() const { return tree_ != nullptr; } | 111 bool connected() const { return tree_ != nullptr; } |
| 116 ClientSpecificId client_id() const { return client_id_; } | 112 ClientSpecificId client_id() const { return client_id_; } |
| 117 | 113 |
| 118 client::CaptureClient* GetCaptureClient(); | |
| 119 | |
| 120 void SetCanFocus(Window* window, bool can_focus); | 114 void SetCanFocus(Window* window, bool can_focus); |
| 121 void SetCanAcceptDrops(Id window_id, bool can_accept_drops); | 115 void SetCanAcceptDrops(Id window_id, bool can_accept_drops); |
| 122 void SetEventTargetingPolicy(WindowMus* window, | 116 void SetEventTargetingPolicy(WindowMus* window, |
| 123 ui::mojom::EventTargetingPolicy policy); | 117 ui::mojom::EventTargetingPolicy policy); |
| 124 void SetPredefinedCursor(WindowMus* window, | 118 void SetPredefinedCursor(WindowMus* window, |
| 125 ui::mojom::Cursor old_cursor, | 119 ui::mojom::Cursor old_cursor, |
| 126 ui::mojom::Cursor new_cursor); | 120 ui::mojom::Cursor new_cursor); |
| 127 void SetWindowTextInputState(WindowMus* window, | 121 void SetWindowTextInputState(WindowMus* window, |
| 128 mojo::TextInputStatePtr state); | 122 mojo::TextInputStatePtr state); |
| 129 void SetImeVisibility(WindowMus* window, | 123 void SetImeVisibility(WindowMus* window, |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 std::unique_ptr<ui::Gpu> gpu_; | 542 std::unique_ptr<ui::Gpu> gpu_; |
| 549 std::unique_ptr<MusContextFactory> compositor_context_factory_; | 543 std::unique_ptr<MusContextFactory> compositor_context_factory_; |
| 550 base::WeakPtrFactory<WindowTreeClient> weak_factory_; | 544 base::WeakPtrFactory<WindowTreeClient> weak_factory_; |
| 551 | 545 |
| 552 DISALLOW_COPY_AND_ASSIGN(WindowTreeClient); | 546 DISALLOW_COPY_AND_ASSIGN(WindowTreeClient); |
| 553 }; | 547 }; |
| 554 | 548 |
| 555 } // namespace aura | 549 } // namespace aura |
| 556 | 550 |
| 557 #endif // UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ | 551 #endif // UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ |
| OLD | NEW |