| Index: ash/wm/window_cycle_controller.cc
|
| ===================================================================
|
| --- ash/wm/window_cycle_controller.cc (revision 165163)
|
| +++ ash/wm/window_cycle_controller.cc (working copy)
|
| @@ -93,8 +93,8 @@
|
| }
|
|
|
| // Adds all the children of all of |window|s children to |windows|.
|
| -void AddWorkspace2Children(aura::Window* window,
|
| - WindowCycleList::WindowList* windows) {
|
| +void AddWorkspaceChildren(aura::Window* window,
|
| + WindowCycleList::WindowList* windows) {
|
| for (size_t i = 0; i < window->children().size(); ++i)
|
| AddAllChildren(window->children()[i], windows);
|
| }
|
| @@ -106,7 +106,7 @@
|
| WindowCycleList::WindowList* windows) {
|
| aura::Window* container = Shell::GetContainer(root, container_id);
|
| if (container_id == internal::kShellWindowId_DefaultContainer)
|
| - AddWorkspace2Children(container, windows);
|
| + AddWorkspaceChildren(container, windows);
|
| else
|
| AddAllChildren(container, windows);
|
| }
|
|
|