| Index: ash/mus/layout_manager.cc
|
| diff --git a/ash/mus/layout_manager.cc b/ash/mus/layout_manager.cc
|
| index 41e1cd811c82bdf209c16cdeccce576a8094a346..ee23f769e10e222eb0849534797d06f550d9d33f 100644
|
| --- a/ash/mus/layout_manager.cc
|
| +++ b/ash/mus/layout_manager.cc
|
| @@ -26,7 +26,7 @@ void LayoutManager::Uninstall() {
|
| if (!owner_)
|
| return;
|
| owner_->RemoveObserver(this);
|
| - for (auto child : owner_->children())
|
| + for (auto* child : owner_->children())
|
| child->RemoveObserver(this);
|
| owner_ = nullptr;
|
| }
|
| @@ -58,7 +58,7 @@ void LayoutManager::OnWindowBoundsChanged(::mus::Window* window,
|
| return;
|
|
|
| // Changes to the container's bounds require all windows to be laid out.
|
| - for (auto child : window->children())
|
| + for (auto* child : window->children())
|
| LayoutWindow(child);
|
| }
|
|
|
|
|