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

Unified Diff: ash/shelf/shelf_controller.cc

Issue 2899253002: chromeos: Rename ash::WmShelf to Shelf (Closed)
Patch Set: rebase 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/shelf/shelf_controller.h ('k') | ash/shelf/shelf_layout_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shelf/shelf_controller.cc
diff --git a/ash/shelf/shelf_controller.cc b/ash/shelf/shelf_controller.cc
index 06382c49484c32db4418191afbf830027e7452eb..f361975082dfa728a26c41495a20441aa04ea979 100644
--- a/ash/shelf/shelf_controller.cc
+++ b/ash/shelf/shelf_controller.cc
@@ -8,7 +8,7 @@
#include "ash/root_window_controller.h"
#include "ash/session/session_controller.h"
#include "ash/shelf/app_list_shelf_item_delegate.h"
-#include "ash/shelf/wm_shelf.h"
+#include "ash/shelf/shelf.h"
#include "ash/shell.h"
#include "ash/wm_window.h"
#include "base/strings/utf_string_conversions.h"
@@ -20,8 +20,8 @@ namespace ash {
namespace {
-// Returns the WmShelf instance for the display with the given |display_id|.
-WmShelf* GetShelfForDisplay(int64_t display_id) {
+// Returns the Shelf instance for the display with the given |display_id|.
+Shelf* GetShelfForDisplay(int64_t display_id) {
// The controller may be null for invalid ids or for displays being removed.
RootWindowController* root_window_controller =
Shell::GetRootWindowControllerWithDisplayId(display_id);
@@ -41,7 +41,7 @@ void ShelfController::BindRequest(mojom::ShelfControllerRequest request) {
bindings_.AddBinding(this, std::move(request));
}
-void ShelfController::NotifyShelfInitialized(WmShelf* shelf) {
+void ShelfController::NotifyShelfInitialized(Shelf* shelf) {
// Notify observers, Chrome will set alignment and auto-hide from prefs.
int64_t display_id = shelf->GetWindow()->GetDisplayNearestWindow().id();
observers_.ForAllPtrs([display_id](mojom::ShelfObserver* observer) {
@@ -49,7 +49,7 @@ void ShelfController::NotifyShelfInitialized(WmShelf* shelf) {
});
}
-void ShelfController::NotifyShelfAlignmentChanged(WmShelf* shelf) {
+void ShelfController::NotifyShelfAlignmentChanged(Shelf* shelf) {
ShelfAlignment alignment = shelf->alignment();
int64_t display_id = shelf->GetWindow()->GetDisplayNearestWindow().id();
observers_.ForAllPtrs(
@@ -58,7 +58,7 @@ void ShelfController::NotifyShelfAlignmentChanged(WmShelf* shelf) {
});
}
-void ShelfController::NotifyShelfAutoHideBehaviorChanged(WmShelf* shelf) {
+void ShelfController::NotifyShelfAutoHideBehaviorChanged(Shelf* shelf) {
ShelfAutoHideBehavior behavior = shelf->auto_hide_behavior();
int64_t display_id = shelf->GetWindow()->GetDisplayNearestWindow().id();
observers_.ForAllPtrs([behavior, display_id](mojom::ShelfObserver* observer) {
@@ -75,7 +75,7 @@ void ShelfController::AddObserver(
void ShelfController::SetAlignment(ShelfAlignment alignment,
int64_t display_id) {
- WmShelf* shelf = GetShelfForDisplay(display_id);
+ Shelf* shelf = GetShelfForDisplay(display_id);
// TODO(jamescook): The session state check should not be necessary, but
// otherwise this wrongly tries to set the alignment on a secondary display
// during login before the ShelfLockingManager is created.
@@ -85,7 +85,7 @@ void ShelfController::SetAlignment(ShelfAlignment alignment,
void ShelfController::SetAutoHideBehavior(ShelfAutoHideBehavior auto_hide,
int64_t display_id) {
- WmShelf* shelf = GetShelfForDisplay(display_id);
+ Shelf* shelf = GetShelfForDisplay(display_id);
// TODO(jamescook): The session state check should not be necessary, but
// otherwise this wrongly tries to set auto-hide state on a secondary display
// during login.
« no previous file with comments | « ash/shelf/shelf_controller.h ('k') | ash/shelf/shelf_layout_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698