| Index: ash/mus/window_manager_application.cc
|
| diff --git a/ash/mus/window_manager_application.cc b/ash/mus/window_manager_application.cc
|
| index d1e831661255efb4c26be624a6837d20a2ed201f..b7d0355191467122572fd5b6e17ffc7081ea99d0 100644
|
| --- a/ash/mus/window_manager_application.cc
|
| +++ b/ash/mus/window_manager_application.cc
|
| @@ -127,7 +127,7 @@ bool WindowManagerApplication::OnConnect(shell::Connection* connection) {
|
| }
|
|
|
| void WindowManagerApplication::Create(
|
| - shell::Connection* connection,
|
| + const shell::Identity& remote_identity,
|
| mojo::InterfaceRequest<mojom::ShelfLayout> request) {
|
| // TODO(msw): Handle multiple shelves (one per display).
|
| if (!window_manager_->GetRootWindowControllers().empty()) {
|
| @@ -138,7 +138,7 @@ void WindowManagerApplication::Create(
|
| }
|
|
|
| void WindowManagerApplication::Create(
|
| - shell::Connection* connection,
|
| + const shell::Identity& remote_identity,
|
| mojo::InterfaceRequest<mojom::UserWindowController> request) {
|
| if (!window_manager_->GetRootWindowControllers().empty()) {
|
| user_window_controller_bindings_.AddBinding(user_window_controller_.get(),
|
| @@ -149,7 +149,7 @@ void WindowManagerApplication::Create(
|
| }
|
|
|
| void WindowManagerApplication::Create(
|
| - shell::Connection* connection,
|
| + const shell::Identity& remote_identity,
|
| mojo::InterfaceRequest<::ui::mojom::AcceleratorRegistrar> request) {
|
| if (!window_manager_->window_manager_client())
|
| return; // Can happen during shutdown.
|
|
|