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

Unified Diff: ash/shelf/shelf_util.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: merge 2 trunk 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
Index: ash/shelf/shelf_util.cc
diff --git a/ash/shelf/shelf_util.cc b/ash/shelf/shelf_util.cc
index b87d66800fd03de38ba77bd94e3e11b3e0ed9118..41c50007fe180168941b1b840bd68e95187ea039 100644
--- a/ash/shelf/shelf_util.cc
+++ b/ash/shelf/shelf_util.cc
@@ -58,9 +58,9 @@ const ShelfItemDetails* GetShelfItemDetailsForWindow(
return window->GetProperty(kShelfItemDetailsKey);
}
-bool IsHorizontalAlignment(ShelfAlignment alignment) {
- return alignment == SHELF_ALIGNMENT_BOTTOM ||
- alignment == SHELF_ALIGNMENT_BOTTOM_LOCKED;
+bool IsHorizontalAlignment(wm::ShelfAlignment alignment) {
+ return alignment == wm::SHELF_ALIGNMENT_BOTTOM ||
+ alignment == wm::SHELF_ALIGNMENT_BOTTOM_LOCKED;
}
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698