Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: ash/common/wm/container_finder.cc

Issue 2336653002: Ports SystemModalContainerLayoutManager to ash/common (Closed)
Patch Set: merge again Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/common/wm/container_finder.h ('k') | ash/common/wm/system_modal_container_layout_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ash/common/wm/container_finder.h ('k') | ash/common/wm/system_modal_container_layout_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698