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

Side by Side Diff: ash/wm/window_util.h

Issue 2787363002: Moves couple of WmShell methods to standalone functions (Closed)
Patch Set: merge 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_WM_WINDOW_UTIL_H_ 5 #ifndef ASH_WM_WINDOW_UTIL_H_
6 #define ASH_WM_WINDOW_UTIL_H_ 6 #define ASH_WM_WINDOW_UTIL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "ash/ash_export.h" 10 #include "ash/ash_export.h"
(...skipping 11 matching lines...) Expand all
22 namespace ash { 22 namespace ash {
23 23
24 namespace wm { 24 namespace wm {
25 25
26 // Utility functions for window activation. 26 // Utility functions for window activation.
27 ASH_EXPORT void ActivateWindow(aura::Window* window); 27 ASH_EXPORT void ActivateWindow(aura::Window* window);
28 ASH_EXPORT void DeactivateWindow(aura::Window* window); 28 ASH_EXPORT void DeactivateWindow(aura::Window* window);
29 ASH_EXPORT bool IsActiveWindow(aura::Window* window); 29 ASH_EXPORT bool IsActiveWindow(aura::Window* window);
30 ASH_EXPORT aura::Window* GetActiveWindow(); 30 ASH_EXPORT aura::Window* GetActiveWindow();
31 ASH_EXPORT bool CanActivateWindow(aura::Window* window); 31 ASH_EXPORT bool CanActivateWindow(aura::Window* window);
32 ASH_EXPORT aura::Window* GetFocusedWindow();
32 33
33 // Retrieves the activatable window for |window|. If |window| is activatable, 34 // Retrieves the activatable window for |window|. If |window| is activatable,
34 // this will just return it, otherwise it will climb the parent/transient parent 35 // this will just return it, otherwise it will climb the parent/transient parent
35 // chain looking for a window that is activatable, per the ActivationController. 36 // chain looking for a window that is activatable, per the ActivationController.
36 // If you're looking for a function to get the activatable "top level" window, 37 // If you're looking for a function to get the activatable "top level" window,
37 // this is probably what you're looking for. 38 // this is probably what you're looking for.
38 ASH_EXPORT aura::Window* GetActivatableWindow(aura::Window* window); 39 ASH_EXPORT aura::Window* GetActivatableWindow(aura::Window* window);
39 40
41 ASH_EXPORT aura::Window* GetCaptureWindow();
James Cook 2017/03/31 19:29:52 nit: Can you write a comment for this?
sky 2017/03/31 20:15:14 I kind of figured it was obvious (similar to lack
42
40 // Returns true if |window|'s location can be controlled by the user. 43 // Returns true if |window|'s location can be controlled by the user.
41 ASH_EXPORT bool IsWindowUserPositionable(aura::Window* window); 44 ASH_EXPORT bool IsWindowUserPositionable(aura::Window* window);
42 45
43 // Pins the window on top of other windows. 46 // Pins the window on top of other windows.
44 ASH_EXPORT void PinWindow(aura::Window* window, bool trusted); 47 ASH_EXPORT void PinWindow(aura::Window* window, bool trusted);
45 48
46 // Indicates that the window should autohide the shelf when it is the active 49 // Indicates that the window should autohide the shelf when it is the active
47 // window. 50 // window.
48 ASH_EXPORT void SetAutoHideShelf(aura::Window* window, bool autohide); 51 ASH_EXPORT void SetAutoHideShelf(aura::Window* window, bool autohide);
49 52
(...skipping 11 matching lines...) Expand all
61 64
62 // Mark the container window so that InstallSnapLayoutManagerToContainers 65 // Mark the container window so that InstallSnapLayoutManagerToContainers
63 // installs the SnapToPixelLayoutManager. 66 // installs the SnapToPixelLayoutManager.
64 ASH_EXPORT void SetSnapsChildrenToPhysicalPixelBoundary( 67 ASH_EXPORT void SetSnapsChildrenToPhysicalPixelBoundary(
65 aura::Window* container); 68 aura::Window* container);
66 69
67 } // namespace wm 70 } // namespace wm
68 } // namespace ash 71 } // namespace ash
69 72
70 #endif // ASH_WM_WINDOW_UTIL_H_ 73 #endif // ASH_WM_WINDOW_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698