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

Unified Diff: ash/common/wm/always_on_top_controller.h

Issue 2035543004: Shuffles and renames ash/common/wm classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: random changes for chrome tests 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 side-by-side diff with in-line comments
Download patch
Index: ash/common/wm/always_on_top_controller.h
diff --git a/ash/common/wm/always_on_top_controller.h b/ash/common/wm/always_on_top_controller.h
index 11ef10a5f89aea208a086458f907059829149422..cae200a8f777357dacc328f13da080417ded7ad9 100644
--- a/ash/common/wm/always_on_top_controller.h
+++ b/ash/common/wm/always_on_top_controller.h
@@ -8,7 +8,7 @@
#include <memory>
#include "ash/ash_export.h"
-#include "ash/common/wm/wm_window_observer.h"
+#include "ash/common/wm_window_observer.h"
#include "base/macros.h"
namespace ash {
@@ -18,13 +18,13 @@ class WorkspaceLayoutManager;
// 'AlwaysOnTop' property. That is, putting a window into the worskpace
// container if its "AlwaysOnTop" property is false. Otherwise, put it in
// |always_on_top_container_|.
-class ASH_EXPORT AlwaysOnTopController : public wm::WmWindowObserver {
+class ASH_EXPORT AlwaysOnTopController : public WmWindowObserver {
public:
- explicit AlwaysOnTopController(wm::WmWindow* viewport);
+ explicit AlwaysOnTopController(WmWindow* viewport);
~AlwaysOnTopController() override;
// Gets container for given |window| based on its "AlwaysOnTop" property.
- wm::WmWindow* GetContainer(wm::WmWindow* window) const;
+ WmWindow* GetContainer(WmWindow* window) const;
WorkspaceLayoutManager* GetLayoutManager() const;
@@ -32,14 +32,14 @@ class ASH_EXPORT AlwaysOnTopController : public wm::WmWindowObserver {
std::unique_ptr<WorkspaceLayoutManager> layout_manager);
private:
- // Overridden from wm::WmWindowObserver:
- void OnWindowTreeChanged(wm::WmWindow* window,
+ // Overridden from WmWindowObserver:
+ void OnWindowTreeChanged(WmWindow* window,
const TreeChangeParams& params) override;
- void OnWindowPropertyChanged(wm::WmWindow* window,
- wm::WmWindowProperty property) override;
- void OnWindowDestroying(wm::WmWindow* window) override;
+ void OnWindowPropertyChanged(WmWindow* window,
+ WmWindowProperty property) override;
+ void OnWindowDestroying(WmWindow* window) override;
- wm::WmWindow* always_on_top_container_;
+ WmWindow* always_on_top_container_;
DISALLOW_COPY_AND_ASSIGN(AlwaysOnTopController);
};

Powered by Google App Engine
This is Rietveld 408576698