| 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/shell_window_ids.h" |
| 7 #include "ash/common/wm/always_on_top_controller.h" | 8 #include "ash/common/wm/always_on_top_controller.h" |
| 8 #include "ash/common/wm/root_window_finder.h" | 9 #include "ash/common/wm/root_window_finder.h" |
| 9 #include "ash/common/wm/window_state.h" | 10 #include "ash/common/wm/window_state.h" |
| 10 #include "ash/common/wm/wm_globals.h" | 11 #include "ash/common/wm/wm_globals.h" |
| 11 #include "ash/common/wm/wm_root_window_controller.h" | 12 #include "ash/common/wm/wm_root_window_controller.h" |
| 12 #include "ash/common/wm/wm_shell_window_ids.h" | |
| 13 #include "ash/common/wm/wm_window.h" | 13 #include "ash/common/wm/wm_window.h" |
| 14 #include "ui/gfx/geometry/rect.h" | 14 #include "ui/gfx/geometry/rect.h" |
| 15 | 15 |
| 16 namespace ash { | 16 namespace ash { |
| 17 namespace wm { | 17 namespace wm { |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 WmWindow* FindContainerRoot(WmGlobals* globals, const gfx::Rect& bounds) { | 20 WmWindow* FindContainerRoot(WmGlobals* globals, const gfx::Rect& bounds) { |
| 21 if (bounds == gfx::Rect()) | 21 if (bounds == gfx::Rect()) |
| 22 return globals->GetRootWindowForNewWindows(); | 22 return globals->GetRootWindowForNewWindows(); |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 default: | 101 default: |
| 102 NOTREACHED() << "Window " << window->GetShellWindowId() | 102 NOTREACHED() << "Window " << window->GetShellWindowId() |
| 103 << " has unhandled type " << window->GetType(); | 103 << " has unhandled type " << window->GetType(); |
| 104 break; | 104 break; |
| 105 } | 105 } |
| 106 return nullptr; | 106 return nullptr; |
| 107 } | 107 } |
| 108 | 108 |
| 109 } // namespace wm | 109 } // namespace wm |
| 110 } // namespace ash | 110 } // namespace ash |
| OLD | NEW |