| Index: ash/mus/window_manager.cc
|
| diff --git a/ash/mus/window_manager.cc b/ash/mus/window_manager.cc
|
| index 233d25454f187a45d90d0bde519dc199ee26d78d..3ab6ea52b2d2cd7f27322188ff18ace019e9e82b 100644
|
| --- a/ash/mus/window_manager.cc
|
| +++ b/ash/mus/window_manager.cc
|
| @@ -95,10 +95,9 @@ void WindowManager::Init(::ui::WindowTreeClient* window_tree_client) {
|
| window_manager_client_->SetFrameDecorationValues(
|
| std::move(frame_decoration_values));
|
|
|
| - std::unique_ptr<ShellDelegate> shell_delegate(
|
| - new ShellDelegateMus(base::MakeUnique<AppListPresenterStub>()));
|
| - shell_.reset(new WmShellMus(std::move(shell_delegate), window_tree_client_,
|
| - connector_));
|
| + std::unique_ptr<ShellDelegate> shell_delegate(new ShellDelegateMus(
|
| + base::MakeUnique<AppListPresenterStub>(), connector_));
|
| + shell_.reset(new WmShellMus(std::move(shell_delegate), window_tree_client_));
|
| shell_->Initialize();
|
| lookup_.reset(new WmLookupMus);
|
| }
|
|
|