| Index: ash/shell.cc
|
| diff --git a/ash/shell.cc b/ash/shell.cc
|
| index 453a008ed9900c3fc8851159f75d660a320f905c..66811d5e06d8370cca1fef26fedf6d0b30102734 100644
|
| --- a/ash/shell.cc
|
| +++ b/ash/shell.cc
|
| @@ -298,13 +298,13 @@ void Shell::ShowAppList(aura::Window* window) {
|
| window = GetTargetRootWindow();
|
| if (!app_list_controller_)
|
| app_list_controller_.reset(new AppListController);
|
| - app_list_controller_->SetVisible(true, window);
|
| + app_list_controller_->Show(window);
|
| }
|
|
|
| void Shell::DismissAppList() {
|
| if (!app_list_controller_)
|
| return;
|
| - app_list_controller_->SetVisible(false, GetTargetRootWindow());
|
| + app_list_controller_->Dismiss();
|
| }
|
|
|
| void Shell::ToggleAppList(aura::Window* window) {
|
|
|