| Index: components/signin/core/browser/signin_error_controller.cc
|
| diff --git a/components/signin/core/browser/signin_error_controller.cc b/components/signin/core/browser/signin_error_controller.cc
|
| index 1fa6e9f9112453b4fc0f73fa50392862f1642d5b..6dbaf23b1517ebe518dd4dad49e954e64fa76b6d 100644
|
| --- a/components/signin/core/browser/signin_error_controller.cc
|
| +++ b/components/signin/core/browser/signin_error_controller.cc
|
| @@ -91,7 +91,8 @@ void SigninErrorController::AuthStatusChanged() {
|
|
|
| if (error_changed) {
|
| signin_metrics::LogAuthError(auth_error_.state());
|
| - FOR_EACH_OBSERVER(Observer, observer_list_, OnErrorChanged());
|
| + for (auto& observer : observer_list_)
|
| + observer.OnErrorChanged();
|
| }
|
| }
|
|
|
|
|