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

Unified Diff: ash/mus/bridge/wm_shelf_mus.h

Issue 2036353002: mash: Move ash/common/wm/shelf to ash/common/shelf (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase again 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
« no previous file with comments | « ash/mus/bridge/wm_root_window_controller_mus.cc ('k') | ash/mus/bridge/wm_shelf_mus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/bridge/wm_shelf_mus.h
diff --git a/ash/mus/bridge/wm_shelf_mus.h b/ash/mus/bridge/wm_shelf_mus.h
index a9b6157abf914f2d99d569de005f7a26590c8b3a..14f3e1a3b2deacdaedd19f10e4de294300646fc1 100644
--- a/ash/mus/bridge/wm_shelf_mus.h
+++ b/ash/mus/bridge/wm_shelf_mus.h
@@ -9,7 +9,7 @@
#include <vector>
-#include "ash/common/wm/shelf/wm_shelf.h"
+#include "ash/common/shelf/wm_shelf.h"
#include "base/macros.h"
#include "base/observer_list.h"
@@ -19,24 +19,24 @@ namespace mus {
class ShelfLayoutManager;
// WmShelf implementation for mus.
-class WmShelfMus : public wm::WmShelf {
+class WmShelfMus : public WmShelf {
public:
explicit WmShelfMus(ShelfLayoutManager* shelf_layout_manager);
~WmShelfMus() override;
- // wm::WmShelf:
+ // WmShelf:
WmWindow* GetWindow() override;
- wm::ShelfAlignment GetAlignment() const override;
- wm::ShelfBackgroundType GetBackgroundType() const override;
+ ShelfAlignment GetAlignment() const override;
+ ShelfBackgroundType GetBackgroundType() const override;
void UpdateVisibilityState() override;
ShelfVisibilityState GetVisibilityState() const override;
void UpdateIconPositionForWindow(WmWindow* window) override;
gfx::Rect GetScreenBoundsOfItemIconForWindow(WmWindow* window) override;
- void AddObserver(wm::WmShelfObserver* observer) override;
- void RemoveObserver(wm::WmShelfObserver* observer) override;
+ void AddObserver(WmShelfObserver* observer) override;
+ void RemoveObserver(WmShelfObserver* observer) override;
private:
- base::ObserverList<wm::WmShelfObserver> observers_;
+ base::ObserverList<WmShelfObserver> observers_;
ShelfLayoutManager* shelf_layout_manager_;
« no previous file with comments | « ash/mus/bridge/wm_root_window_controller_mus.cc ('k') | ash/mus/bridge/wm_shelf_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698