| 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/common/wm/container_finder.h" | 5 #include "ash/common/wm/container_finder.h" |
| 6 | 6 |
| 7 #include "ash/common/session/session_state_delegate.h" | 7 #include "ash/common/session/session_state_delegate.h" |
| 8 #include "ash/common/shell_window_ids.h" | 8 #include "ash/common/shell_window_ids.h" |
| 9 #include "ash/common/wm/always_on_top_controller.h" | 9 #include "ash/common/wm/always_on_top_controller.h" |
| 10 #include "ash/common/wm/root_window_finder.h" | 10 #include "ash/common/wm/root_window_finder.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 return target_root->GetChildByShellWindowId( | 101 return target_root->GetChildByShellWindowId( |
| 102 kShellWindowId_DragImageAndTooltipContainer); | 102 kShellWindowId_DragImageAndTooltipContainer); |
| 103 default: | 103 default: |
| 104 NOTREACHED() << "Window " << window->GetShellWindowId() | 104 NOTREACHED() << "Window " << window->GetShellWindowId() |
| 105 << " has unhandled type " << window->GetType(); | 105 << " has unhandled type " << window->GetType(); |
| 106 break; | 106 break; |
| 107 } | 107 } |
| 108 return nullptr; | 108 return nullptr; |
| 109 } | 109 } |
| 110 | 110 |
| 111 std::vector<WmWindow*> GetContainersFromAllRootWindows( |
| 112 int container_id, |
| 113 WmWindow* priority_root) { |
| 114 std::vector<WmWindow*> containers; |
| 115 for (WmWindow* root : WmShell::Get()->GetAllRootWindows()) { |
| 116 WmWindow* container = root->GetChildByShellWindowId(container_id); |
| 117 if (!container) |
| 118 continue; |
| 119 |
| 120 if (priority_root && priority_root->Contains(container)) |
| 121 containers.insert(containers.begin(), container); |
| 122 else |
| 123 containers.push_back(container); |
| 124 } |
| 125 return containers; |
| 126 } |
| 127 |
| 111 } // namespace wm | 128 } // namespace wm |
| 112 } // namespace ash | 129 } // namespace ash |
| OLD | NEW |