| Index: ash/root_window_controller.cc
|
| diff --git a/ash/root_window_controller.cc b/ash/root_window_controller.cc
|
| index 70ca0ef2383f31c0807b7242e69395f9ffe7e95c..d917cd1ddaa3eb55006fac5ece49815ea8f00906 100644
|
| --- a/ash/root_window_controller.cc
|
| +++ b/ash/root_window_controller.cc
|
| @@ -907,6 +907,12 @@ void RootWindowController::CreateContainers() {
|
| wm::SetSnapsChildrenToPhysicalPixelBoundary(always_on_top_container);
|
| always_on_top_container->SetProperty(kUsesScreenCoordinatesKey, true);
|
|
|
| + aura::Window* app_list_container =
|
| + CreateContainer(kShellWindowId_AppListContainer, "AppListContainer",
|
| + non_lock_screen_containers);
|
| + wm::SetSnapsChildrenToPhysicalPixelBoundary(app_list_container);
|
| + app_list_container->SetProperty(kUsesScreenCoordinatesKey, true);
|
| +
|
| aura::Window* shelf_container =
|
| CreateContainer(kShellWindowId_ShelfContainer, "ShelfContainer",
|
| non_lock_screen_containers);
|
| @@ -927,12 +933,6 @@ void RootWindowController::CreateContainers() {
|
| shelf_bubble_container->SetProperty(kUsesScreenCoordinatesKey, true);
|
| shelf_bubble_container->SetProperty(kLockedToRootKey, true);
|
|
|
| - aura::Window* app_list_container =
|
| - CreateContainer(kShellWindowId_AppListContainer, "AppListContainer",
|
| - non_lock_screen_containers);
|
| - wm::SetSnapsChildrenToPhysicalPixelBoundary(app_list_container);
|
| - app_list_container->SetProperty(kUsesScreenCoordinatesKey, true);
|
| -
|
| aura::Window* modal_container =
|
| CreateContainer(kShellWindowId_SystemModalContainer,
|
| "SystemModalContainer", non_lock_screen_containers);
|
|
|