| Index: ash/common/focus_cycler.cc
|
| diff --git a/ash/common/focus_cycler.cc b/ash/common/focus_cycler.cc
|
| index 8eb40f090135458571649be0fd5b5ea501364759..5ef50d4f8f6822e794a11110582a610e5bc41142 100644
|
| --- a/ash/common/focus_cycler.cc
|
| +++ b/ash/common/focus_cycler.cc
|
| @@ -18,7 +18,7 @@ namespace ash {
|
| namespace {
|
|
|
| bool HasFocusableWindow() {
|
| - return !WmShell::Get()->GetMruWindowTracker()->BuildMruWindowList().empty();
|
| + return !WmShell::Get()->mru_window_tracker()->BuildMruWindowList().empty();
|
| }
|
|
|
| } // namespace
|
| @@ -80,7 +80,7 @@ void FocusCycler::RotateFocus(Direction direction) {
|
| if (index == browser_index) {
|
| // Activate the most recently active browser window.
|
| MruWindowTracker::WindowList mru_windows(
|
| - WmShell::Get()->GetMruWindowTracker()->BuildMruWindowList());
|
| + WmShell::Get()->mru_window_tracker()->BuildMruWindowList());
|
| if (mru_windows.empty())
|
| break;
|
| WmWindow* window = mru_windows.front();
|
|
|