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

Unified Diff: ash/shell.cc

Issue 1914093002: Refactors DockedWindowLayoutManager in terms of ash/wm/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nuke_aura_window
Patch Set: comment Created 4 years, 8 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/shell.h ('k') | ash/system/cast/tray_cast.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell.cc
diff --git a/ash/shell.cc b/ash/shell.cc
index ed74ab40e0bd47bc75e32f9bf87000e03f568522..8a7284a78954a8b625f93061dbf10090a4b5a0c2 100644
--- a/ash/shell.cc
+++ b/ash/shell.cc
@@ -517,12 +517,13 @@ ShelfAutoHideBehavior Shell::GetShelfAutoHideBehavior(
return Shelf::ForWindow(root_window)->auto_hide_behavior();
}
-void Shell::SetShelfAlignment(ShelfAlignment alignment,
+void Shell::SetShelfAlignment(wm::ShelfAlignment alignment,
aura::Window* root_window) {
Shelf::ForWindow(root_window)->SetAlignment(alignment);
}
-ShelfAlignment Shell::GetShelfAlignment(const aura::Window* root_window) const {
+wm::ShelfAlignment Shell::GetShelfAlignment(
+ const aura::Window* root_window) const {
return Shelf::ForWindow(root_window)->alignment();
}
« no previous file with comments | « ash/shell.h ('k') | ash/system/cast/tray_cast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698