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

Unified Diff: ash/common/wm/panels/panel_layout_manager.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/common/wm/dock/docked_window_layout_manager.cc ('k') | ash/common/wm/panels/panel_layout_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/wm/panels/panel_layout_manager.h
diff --git a/ash/common/wm/panels/panel_layout_manager.h b/ash/common/wm/panels/panel_layout_manager.h
index 88ae1d5be5aca668bfe36945cd5e051e2c748af3..c45a476cb62f19d0c8d9194649f7d9a507935a73 100644
--- a/ash/common/wm/panels/panel_layout_manager.h
+++ b/ash/common/wm/panels/panel_layout_manager.h
@@ -9,7 +9,7 @@
#include <memory>
#include "ash/ash_export.h"
-#include "ash/common/wm/shelf/wm_shelf_observer.h"
+#include "ash/common/shelf/wm_shelf_observer.h"
#include "ash/common/wm/window_state_observer.h"
#include "ash/common/wm_activation_observer.h"
#include "ash/common/wm_display_observer.h"
@@ -40,10 +40,10 @@ namespace ash {
class PanelCalloutWidget;
class Shelf;
class ShelfLayoutManager;
+class WmShelf;
namespace wm {
class WmRootWindowController;
-class WmShelf;
}
// PanelLayoutManager is responsible for organizing panels within the
@@ -64,7 +64,7 @@ class ASH_EXPORT PanelLayoutManager
public WmRootWindowControllerObserver,
public WmWindowObserver,
public keyboard::KeyboardControllerObserver,
- public wm::WmShelfObserver {
+ public WmShelfObserver {
public:
explicit PanelLayoutManager(WmWindow* panel_container);
~PanelLayoutManager() override;
@@ -87,8 +87,8 @@ class ASH_EXPORT PanelLayoutManager
// Returns the callout widget (arrow) for |panel|.
views::Widget* GetCalloutWidgetForPanel(WmWindow* panel);
- wm::WmShelf* shelf() { return shelf_; }
- void SetShelf(wm::WmShelf* shelf);
+ WmShelf* shelf() { return shelf_; }
+ void SetShelf(WmShelf* shelf);
// Overridden from WmLayoutManager
void OnWindowResized() override;
@@ -120,7 +120,7 @@ class ASH_EXPORT PanelLayoutManager
// Overridden from WindowTreeHostManager::Observer
void OnDisplayConfigurationChanged() override;
- // Overridden from wm::WmShelfObserver
+ // Overridden from WmShelfObserver
void WillChangeVisibilityState(ShelfVisibilityState new_state) override;
void OnShelfIconPositionsChanged() override;
@@ -192,7 +192,7 @@ class ASH_EXPORT PanelLayoutManager
// The panel being dragged.
WmWindow* dragged_panel_;
// The shelf we are observing for shelf icon changes.
- wm::WmShelf* shelf_;
+ WmShelf* shelf_;
// When not NULL, the shelf is hidden (i.e. full screen) and this tracks the
// set of panel windows which have been temporarily hidden and need to be
« no previous file with comments | « ash/common/wm/dock/docked_window_layout_manager.cc ('k') | ash/common/wm/panels/panel_layout_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698