| 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/wm/container_finder.h" |
| 6 | 6 |
| 7 #include "ash/common/session/session_state_delegate.h" | |
| 8 #include "ash/common/wm/always_on_top_controller.h" | |
| 9 #include "ash/common/wm/root_window_finder.h" | |
| 10 #include "ash/common/wm/window_state.h" | |
| 11 #include "ash/common/wm_shell.h" | |
| 12 #include "ash/common/wm_window.h" | |
| 13 #include "ash/public/cpp/shell_window_ids.h" | 7 #include "ash/public/cpp/shell_window_ids.h" |
| 14 #include "ash/public/cpp/window_properties.h" | 8 #include "ash/public/cpp/window_properties.h" |
| 15 #include "ash/root_window_controller.h" | 9 #include "ash/root_window_controller.h" |
| 10 #include "ash/session/session_state_delegate.h" |
| 11 #include "ash/wm/always_on_top_controller.h" |
| 12 #include "ash/wm/root_window_finder.h" |
| 13 #include "ash/wm/window_state.h" |
| 14 #include "ash/wm_shell.h" |
| 15 #include "ash/wm_window.h" |
| 16 #include "ui/gfx/geometry/rect.h" | 16 #include "ui/gfx/geometry/rect.h" |
| 17 | 17 |
| 18 namespace ash { | 18 namespace ash { |
| 19 namespace wm { | 19 namespace wm { |
| 20 namespace { | 20 namespace { |
| 21 | 21 |
| 22 WmWindow* FindContainerRoot(WmShell* shell, const gfx::Rect& bounds) { | 22 WmWindow* FindContainerRoot(WmShell* shell, const gfx::Rect& bounds) { |
| 23 if (bounds == gfx::Rect()) | 23 if (bounds == gfx::Rect()) |
| 24 return shell->GetRootWindowForNewWindows(); | 24 return shell->GetRootWindowForNewWindows(); |
| 25 return GetRootWindowMatching(bounds); | 25 return GetRootWindowMatching(bounds); |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 if (priority_root && priority_root->Contains(container)) | 121 if (priority_root && priority_root->Contains(container)) |
| 122 containers.insert(containers.begin(), container); | 122 containers.insert(containers.begin(), container); |
| 123 else | 123 else |
| 124 containers.push_back(container); | 124 containers.push_back(container); |
| 125 } | 125 } |
| 126 return containers; | 126 return containers; |
| 127 } | 127 } |
| 128 | 128 |
| 129 } // namespace wm | 129 } // namespace wm |
| 130 } // namespace ash | 130 } // namespace ash |
| OLD | NEW |