| Index: components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| diff --git a/components/mus/public/cpp/lib/window_tree_client_impl.cc b/components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| index 5b02c733c197593674ac07f5efc0008ba8b244c4..c20441c3c8720971b5b59eee7020ed473b0ebe58 100644
|
| --- a/components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| +++ b/components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| @@ -123,6 +123,8 @@ WindowTreeClientImpl::WindowTreeClientImpl(
|
| // Allow for a null request in tests.
|
| if (request.is_pending())
|
| binding_.Bind(std::move(request));
|
| + if (window_manager_delegate)
|
| + window_manager_delegate->SetWindowManagerClient(this);
|
| }
|
|
|
| WindowTreeClientImpl::~WindowTreeClientImpl() {
|
| @@ -862,4 +864,10 @@ void WindowTreeClientImpl::WmCreateTopLevelWindow(
|
| window->id());
|
| }
|
|
|
| +void WindowTreeClientImpl::SetFrameDecorationValues(
|
| + mojom::FrameDecorationValuesPtr values) {
|
| + window_manager_internal_client_->WmSetFrameDecorationValues(
|
| + std::move(values));
|
| +}
|
| +
|
| } // namespace mus
|
|
|