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

Unified Diff: ash/wm/always_on_top_controller.h

Issue 2896273004: chromeos: converts PanelLayoutManager to aura::Window (Closed)
Patch Set: feedback Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/root_window_controller.cc ('k') | ash/wm/always_on_top_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/always_on_top_controller.h
diff --git a/ash/wm/always_on_top_controller.h b/ash/wm/always_on_top_controller.h
index 4f33eeeede88110c34b221b37a5a2011464a3add..44a26ea2669116dc5cc786a9a56b2b5e58765000 100644
--- a/ash/wm/always_on_top_controller.h
+++ b/ash/wm/always_on_top_controller.h
@@ -13,7 +13,6 @@
namespace ash {
-class WmWindow;
class WorkspaceLayoutManager;
// AlwaysOnTopController puts window into proper containers based on its
@@ -22,11 +21,11 @@ class WorkspaceLayoutManager;
// |always_on_top_container_|.
class ASH_EXPORT AlwaysOnTopController : public aura::WindowObserver {
public:
- explicit AlwaysOnTopController(WmWindow* viewport);
+ explicit AlwaysOnTopController(aura::Window* viewport);
~AlwaysOnTopController() override;
// Gets container for given |window| based on its "AlwaysOnTop" property.
- WmWindow* GetContainer(WmWindow* window) const;
+ aura::Window* GetContainer(aura::Window* window) const;
WorkspaceLayoutManager* GetLayoutManager() const;
@@ -41,7 +40,7 @@ class ASH_EXPORT AlwaysOnTopController : public aura::WindowObserver {
intptr_t old) override;
void OnWindowDestroying(aura::Window* window) override;
- WmWindow* always_on_top_container_;
+ aura::Window* always_on_top_container_;
DISALLOW_COPY_AND_ASSIGN(AlwaysOnTopController);
};
« no previous file with comments | « ash/root_window_controller.cc ('k') | ash/wm/always_on_top_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698