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

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

Issue 2808723004: Renames WmShell to ShellPort (Closed)
Patch Set: feedback Created 3 years, 8 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
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/wm/container_finder.h" 5 #include "ash/wm/container_finder.h"
6 6
7 #include "ash/public/cpp/shell_window_ids.h" 7 #include "ash/public/cpp/shell_window_ids.h"
8 #include "ash/public/cpp/window_properties.h" 8 #include "ash/public/cpp/window_properties.h"
9 #include "ash/root_window_controller.h" 9 #include "ash/root_window_controller.h"
10 #include "ash/session/session_controller.h" 10 #include "ash/session/session_controller.h"
11 #include "ash/shell.h" 11 #include "ash/shell.h"
12 #include "ash/wm/always_on_top_controller.h" 12 #include "ash/wm/always_on_top_controller.h"
13 #include "ash/wm/root_window_finder.h" 13 #include "ash/wm/root_window_finder.h"
14 #include "ash/wm/window_state.h" 14 #include "ash/wm/window_state.h"
15 #include "ash/wm_shell.h"
16 #include "ash/wm_window.h" 15 #include "ash/wm_window.h"
17 #include "ui/aura/window.h" 16 #include "ui/aura/window.h"
18 #include "ui/gfx/geometry/rect.h" 17 #include "ui/gfx/geometry/rect.h"
19 18
20 namespace ash { 19 namespace ash {
21 namespace wm { 20 namespace wm {
22 namespace { 21 namespace {
23 22
24 WmWindow* FindContainerRoot(const gfx::Rect& bounds) { 23 WmWindow* FindContainerRoot(const gfx::Rect& bounds) {
25 if (bounds == gfx::Rect()) 24 if (bounds == gfx::Rect())
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 if (priority_root && priority_root->Contains(container)) 120 if (priority_root && priority_root->Contains(container))
122 containers.insert(containers.begin(), container); 121 containers.insert(containers.begin(), container);
123 else 122 else
124 containers.push_back(container); 123 containers.push_back(container);
125 } 124 }
126 return containers; 125 return containers;
127 } 126 }
128 127
129 } // namespace wm 128 } // namespace wm
130 } // namespace ash 129 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698