| Index: ash/wm/mru_window_tracker.cc
|
| diff --git a/ash/wm/mru_window_tracker.cc b/ash/wm/mru_window_tracker.cc
|
| index 5974aad4ebf78e79a4376e3c32968e7b402ad367..4ed9a1df7230add4d26cfe61e7f7828bd220b76a 100644
|
| --- a/ash/wm/mru_window_tracker.cc
|
| +++ b/ash/wm/mru_window_tracker.cc
|
| @@ -57,10 +57,10 @@ MruWindowTracker::WindowList BuildWindowListInternal(
|
| const std::list<aura::Window*>* mru_windows,
|
| bool top_most_at_end) {
|
| MruWindowTracker::WindowList windows;
|
| - Shell::RootWindowList root_windows = Shell::GetAllRootWindows();
|
| + aura::Window::Windows root_windows = Shell::GetAllRootWindows();
|
|
|
| aura::Window* active_root = Shell::GetTargetRootWindow();
|
| - for (Shell::RootWindowList::const_iterator iter = root_windows.begin();
|
| + for (aura::Window::Windows::const_iterator iter = root_windows.begin();
|
| iter != root_windows.end(); ++iter) {
|
| if (*iter == active_root)
|
| continue;
|
|
|