| Index: ash/shell/app_list.cc
|
| diff --git a/ash/shell/app_list.cc b/ash/shell/app_list.cc
|
| index e4a066a33b7cf868d9d267d171765e0bcaf5e8da..c9a280b0c8ff86689d006957224d14e7ceb1a209 100644
|
| --- a/ash/shell/app_list.cc
|
| +++ b/ash/shell/app_list.cc
|
| @@ -9,7 +9,6 @@
|
|
|
| #include "ash/common/session/session_state_delegate.h"
|
| #include "ash/common/wm_shell.h"
|
| -#include "ash/shell.h"
|
| #include "ash/shell/example_factory.h"
|
| #include "ash/shell/toplevel_window.h"
|
| #include "base/callback.h"
|
| @@ -304,8 +303,8 @@ class ExampleAppListViewDelegate : public app_list::AppListViewDelegate {
|
| }
|
|
|
| void Dismiss() override {
|
| - DCHECK(Shell::HasInstance());
|
| - Shell::GetInstance()->DismissAppList();
|
| + DCHECK(WmShell::HasInstance());
|
| + WmShell::Get()->DismissAppList();
|
| }
|
|
|
| void ViewClosing() override {
|
|
|