diff options
Diffstat (limited to 'ash/shell.cc')
-rw-r--r-- | ash/shell.cc | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/ash/shell.cc b/ash/shell.cc index 1da2922..858cbfa 100644 --- a/ash/shell.cc +++ b/ash/shell.cc @@ -173,24 +173,13 @@ void CreateSpecialContainers(aura::RootWindow* root_window) { "PanelContainer", non_lock_screen_containers); - // V1 Applist container is below launcher container. - bool use_v2_applist = internal::AppListController::UseAppListV2(); - if (!use_v2_applist) { - CreateContainer(internal::kShellWindowId_AppListContainer, - "AppListContainer", - non_lock_screen_containers); - } - CreateContainer(internal::kShellWindowId_LauncherContainer, "LauncherContainer", non_lock_screen_containers); - // V2 Applist container is above launcher container. - if (use_v2_applist) { - CreateContainer(internal::kShellWindowId_AppListContainer, - "AppListContainer", - non_lock_screen_containers); - } + CreateContainer(internal::kShellWindowId_AppListContainer, + "AppListContainer", + non_lock_screen_containers); aura::Window* modal_container = CreateContainer( internal::kShellWindowId_SystemModalContainer, |