| Index: ash/first_run/first_run_helper_impl.cc
|
| diff --git a/ash/first_run/first_run_helper_impl.cc b/ash/first_run/first_run_helper_impl.cc
|
| index 919cca91a14105d83f6e243c5cfede002ae31f88..8a7980cb64bbb66d743589674fa775b07f428b74 100644
|
| --- a/ash/first_run/first_run_helper_impl.cc
|
| +++ b/ash/first_run/first_run_helper_impl.cc
|
| @@ -51,15 +51,11 @@ views::Widget* FirstRunHelperImpl::GetOverlayWidget() {
|
| }
|
|
|
| void FirstRunHelperImpl::OpenAppList() {
|
| - if (Shell::GetInstance()->GetAppListTargetVisibility())
|
| - return;
|
| - Shell::GetInstance()->ToggleAppList(NULL);
|
| + Shell::GetInstance()->ShowAppList(NULL);
|
| }
|
|
|
| void FirstRunHelperImpl::CloseAppList() {
|
| - if (!Shell::GetInstance()->GetAppListTargetVisibility())
|
| - return;
|
| - Shell::GetInstance()->ToggleAppList(NULL);
|
| + Shell::GetInstance()->DismissAppList();
|
| }
|
|
|
| gfx::Rect FirstRunHelperImpl::GetLauncherBounds() {
|
|
|