| Index: ash/wm/workspace/workspace_layout_manager.cc
|
| diff --git a/ash/wm/workspace/workspace_layout_manager.cc b/ash/wm/workspace/workspace_layout_manager.cc
|
| index cf8f4930db7dd335d6a72877b5786d1aee334200..6e9fecaa7466ec144394a74de656fdac9b79ba75 100644
|
| --- a/ash/wm/workspace/workspace_layout_manager.cc
|
| +++ b/ash/wm/workspace/workspace_layout_manager.cc
|
| @@ -48,7 +48,7 @@ void BuildWindowBoundsMap(const aura::Window* window, BoundsMap* bounds_map) {
|
| BuildWindowBoundsMap(window->children()[i], bounds_map);
|
| }
|
|
|
| -// Resets |window|s bounds from |bounds_map| if currently empty. Recusively
|
| +// Resets |window|s bounds from |bounds_map| if currently empty. Recursively
|
| // invokes this for all children.
|
| void ResetBoundsIfNecessary(const BoundsMap& bounds_map, aura::Window* window) {
|
| if (window->bounds().IsEmpty() && window->GetTargetBounds().IsEmpty()) {
|
| @@ -61,7 +61,7 @@ void ResetBoundsIfNecessary(const BoundsMap& bounds_map, aura::Window* window) {
|
| }
|
|
|
| // Resets |window|s bounds from |bounds_map| if |window| is marked as a
|
| -// constrained window. Recusively invokes this for all children.
|
| +// constrained window. Recursively invokes this for all children.
|
| // TODO(sky): this should key off window type.
|
| void ResetConstrainedWindowBoundsIfNecessary(const BoundsMap& bounds_map,
|
| aura::Window* window) {
|
|
|