Index: chrome/browser/chromeos/first_run/steps/tray_step.cc |
diff --git a/chrome/browser/chromeos/first_run/steps/tray_step.cc b/chrome/browser/chromeos/first_run/steps/tray_step.cc |
index 41393a76bfb9b5884ad38fda80145ac0c3a580a7..819ac8c5681226839d2109434596995ed5149ba4 100644 |
--- a/chrome/browser/chromeos/first_run/steps/tray_step.cc |
+++ b/chrome/browser/chromeos/first_run/steps/tray_step.cc |
@@ -28,10 +28,10 @@ void TrayStep::DoShow() { |
FirstRunActor::StepPosition position; |
position.SetTop(bounds.y()); |
ash::Shell* shell = ash::Shell::GetInstance(); |
- ash::ShelfAlignment alignment = |
+ ash::wm::ShelfAlignment alignment = |
shell->GetShelfAlignment(shell->GetPrimaryRootWindow()); |
- if ((!base::i18n::IsRTL() && alignment != ash::SHELF_ALIGNMENT_LEFT) || |
- alignment == ash::SHELF_ALIGNMENT_RIGHT) |
+ if ((!base::i18n::IsRTL() && alignment != ash::wm::SHELF_ALIGNMENT_LEFT) || |
+ alignment == ash::wm::SHELF_ALIGNMENT_RIGHT) |
position.SetRight(GetOverlaySize().width() - bounds.x()); |
else |
position.SetLeft(bounds.right()); |