| Index: services/shell/service_manager.cc
|
| diff --git a/services/shell/service_manager.cc b/services/shell/service_manager.cc
|
| index 70aca84c9d0457827d6043fdff75d8a878031abf..6fa81a995ceba94dc125457a012bcf8b2c188645 100644
|
| --- a/services/shell/service_manager.cc
|
| +++ b/services/shell/service_manager.cc
|
| @@ -137,7 +137,7 @@ class ServiceManager::Instance
|
| parent_->RemoveChild(this);
|
| // |children_| will be modified during destruction.
|
| std::set<Instance*> children = children_;
|
| - for (auto child : children)
|
| + for (auto* child : children)
|
| service_manager_->OnInstanceError(child);
|
|
|
| // Shutdown all bindings before we close the runner. This way the process
|
|
|