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

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

Issue 2025413002: Moves RootWindowControllerCommon and LayoutManager to common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@use_root_window_controller_common
Patch Set: merge Created 4 years, 6 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/always_on_top_controller.cc ('k') | ash/common/wm/default_state.cc » ('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/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
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
OLDNEW
« no previous file with comments | « ash/common/wm/always_on_top_controller.cc ('k') | ash/common/wm/default_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698