| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/shell_port.h" | 5 #include "ash/shell_port.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "ash/accelerators/accelerator_controller.h" | 9 #include "ash/accelerators/accelerator_controller.h" |
| 10 #include "ash/public/cpp/shell_window_ids.h" | 10 #include "ash/public/cpp/shell_window_ids.h" |
| 11 #include "ash/root_window_controller.h" | 11 #include "ash/root_window_controller.h" |
| 12 #include "ash/session/session_controller.h" | 12 #include "ash/session/session_controller.h" |
| 13 #include "ash/session/session_state_delegate.h" | |
| 14 #include "ash/shelf/app_list_shelf_item_delegate.h" | 13 #include "ash/shelf/app_list_shelf_item_delegate.h" |
| 15 #include "ash/shell.h" | 14 #include "ash/shell.h" |
| 16 #include "ash/shell_delegate.h" | 15 #include "ash/shell_delegate.h" |
| 17 #include "ash/wm/root_window_finder.h" | 16 #include "ash/wm/root_window_finder.h" |
| 18 #include "ash/wm/system_modal_container_layout_manager.h" | 17 #include "ash/wm/system_modal_container_layout_manager.h" |
| 19 #include "ash/wm_window.h" | 18 #include "ash/wm_window.h" |
| 20 #include "base/bind.h" | 19 #include "base/bind.h" |
| 21 #include "base/logging.h" | 20 #include "base/logging.h" |
| 22 #include "base/memory/ptr_util.h" | 21 #include "base/memory/ptr_util.h" |
| 23 #include "ui/display/display.h" | 22 #include "ui/display/display.h" |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 } | 111 } |
| 113 } | 112 } |
| 114 for (aura::Window* root_window : root_windows) { | 113 for (aura::Window* root_window : root_windows) { |
| 115 RootWindowController::ForWindow(root_window) | 114 RootWindowController::ForWindow(root_window) |
| 116 ->GetSystemModalLayoutManager(removed) | 115 ->GetSystemModalLayoutManager(removed) |
| 117 ->DestroyModalBackground(); | 116 ->DestroyModalBackground(); |
| 118 } | 117 } |
| 119 } | 118 } |
| 120 | 119 |
| 121 } // namespace ash | 120 } // namespace ash |
| OLD | NEW |