| Index: ui/aura/mus/window_tree_client.cc
|
| diff --git a/ui/aura/mus/window_tree_client.cc b/ui/aura/mus/window_tree_client.cc
|
| index 9b93c51aa52c4206e39da9f44e89475a51a30b5f..8b5bc8570e20a7ee089776f4be86dd79758953cb 100644
|
| --- a/ui/aura/mus/window_tree_client.cc
|
| +++ b/ui/aura/mus/window_tree_client.cc
|
| @@ -1431,6 +1431,12 @@ void WindowTreeClient::WmSetProperty(
|
| window_manager_internal_client_->WmResponse(change_id, result);
|
| }
|
|
|
| +void WindowTreeClient::WmSetModalType(Id window_id, ui::ModalType type) {
|
| + WindowMus* window = GetWindowByServerId(window_id);
|
| + if (window)
|
| + window->GetWindow()->SetProperty(aura::client::kModalKey, type);
|
| +}
|
| +
|
| void WindowTreeClient::WmSetCanFocus(Id window_id, bool can_focus) {
|
| WindowMus* window = GetWindowByServerId(window_id);
|
| if (window)
|
|
|