| 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 67002116488263b9913ca0f1fd3a2070f06e30bc..a02293cf17aeee00e03818dcf1707b1c0ac61b0a 100644
|
| --- a/chrome/browser/chromeos/first_run/steps/tray_step.cc
|
| +++ b/chrome/browser/chromeos/first_run/steps/tray_step.cc
|
| @@ -5,7 +5,7 @@
|
| #include "chrome/browser/chromeos/first_run/steps/tray_step.h"
|
|
|
| #include "ash/first_run/first_run_helper.h"
|
| -#include "ash/shelf/wm_shelf.h"
|
| +#include "ash/shelf/shelf.h"
|
| #include "ash/shell.h"
|
| #include "base/i18n/rtl.h"
|
| #include "chrome/browser/chromeos/first_run/step_names.h"
|
| @@ -29,7 +29,7 @@ void TrayStep::DoShow() {
|
| FirstRunActor::StepPosition position;
|
| position.SetTop(bounds.y());
|
| ash::ShelfAlignment alignment =
|
| - ash::WmShelf::ForWindow(ash::Shell::GetPrimaryRootWindow())->alignment();
|
| + ash::Shelf::ForWindow(ash::Shell::GetPrimaryRootWindow())->alignment();
|
| if ((!base::i18n::IsRTL() && alignment != ash::SHELF_ALIGNMENT_LEFT) ||
|
| alignment == ash::SHELF_ALIGNMENT_RIGHT)
|
| position.SetRight(GetOverlaySize().width() - bounds.x());
|
|
|