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

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

Issue 2762633003: Remove unused |context| from GetDefaultParent(). (Closed)
Patch Set: Fix chromecast compile error. Created 3 years, 9 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 | « no previous file | ash/common/wm/container_finder.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 #ifndef ASH_COMMON_WM_CONTAINER_FINDER_H_ 5 #ifndef ASH_COMMON_WM_CONTAINER_FINDER_H_
6 #define ASH_COMMON_WM_CONTAINER_FINDER_H_ 6 #define ASH_COMMON_WM_CONTAINER_FINDER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/ash_export.h" 10 #include "ash/ash_export.h"
11 11
12 namespace aura { 12 namespace aura {
13 class Window; 13 class Window;
14 } 14 }
15 15
16 namespace gfx { 16 namespace gfx {
17 class Rect; 17 class Rect;
18 } 18 }
19 19
20 namespace ash { 20 namespace ash {
21 21
22 class WmWindow; 22 class WmWindow;
23 23
24 namespace wm { 24 namespace wm {
25 25
26 // Returns the first ancestor of |window| that has a known container ID. 26 // Returns the first ancestor of |window| that has a known container ID.
27 ASH_EXPORT WmWindow* GetContainerForWindow(WmWindow* window); 27 ASH_EXPORT WmWindow* GetContainerForWindow(WmWindow* window);
28 28
29 // Returns the parent to add |window| to in |context|. This is generally 29 // Returns the parent to add |window| to. This is generally used when a window
30 // used when a window is moved from one root to another. In this case |context| 30 // is moved from one root to another.
31 // is the new root to add |window| to. 31 ASH_EXPORT WmWindow* GetDefaultParent(WmWindow* window,
32 ASH_EXPORT WmWindow* GetDefaultParent(WmWindow* context,
33 WmWindow* window,
34 const gfx::Rect& bounds); 32 const gfx::Rect& bounds);
35 33
36 // Returns the list of containers that match |container_id| in all root windows. 34 // Returns the list of containers that match |container_id| in all root windows.
37 // If |priority_root| is non-null, the container in |priority_root| is placed at 35 // If |priority_root| is non-null, the container in |priority_root| is placed at
38 // the front of the list. 36 // the front of the list.
39 ASH_EXPORT std::vector<aura::Window*> GetContainersFromAllRootWindows( 37 ASH_EXPORT std::vector<aura::Window*> GetContainersFromAllRootWindows(
40 int container_id, 38 int container_id,
41 aura::Window* priority_root = nullptr); 39 aura::Window* priority_root = nullptr);
42 40
43 } // namespace wm 41 } // namespace wm
44 } // namespace ash 42 } // namespace ash
45 43
46 #endif // ASH_COMMON_WM_CONTAINER_FINDER_H_ 44 #endif // ASH_COMMON_WM_CONTAINER_FINDER_H_
OLDNEW
« no previous file with comments | « no previous file | ash/common/wm/container_finder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698