| Index: components/signin/core/browser/signin_manager_base.h
|
| diff --git a/components/signin/core/browser/signin_manager_base.h b/components/signin/core/browser/signin_manager_base.h
|
| index a7a0f9b6feba6082e6fa388588334353c9698182..5ce10fa2627330af12e3998f1e298e28cfef1520 100644
|
| --- a/components/signin/core/browser/signin_manager_base.h
|
| +++ b/components/signin/core/browser/signin_manager_base.h
|
| @@ -125,7 +125,7 @@ class SigninManagerBase : public KeyedService {
|
| // Used by subclass to clear authenticated_username_ instead of using
|
| // SetAuthenticatedUsername, which enforces special preconditions due
|
| // to the fact that it is part of the public API and called by clients.
|
| - void clear_authenticated_username();
|
| + void ClearAuthenticatedUsername();
|
|
|
| // List of observers to notify on signin events.
|
| // Makes sure list is empty on destruction.
|
| @@ -146,8 +146,9 @@ class SigninManagerBase : public KeyedService {
|
| SigninClient* client_;
|
| bool initialized_;
|
|
|
| - // Actual username after successful authentication.
|
| + // Actual username and account_id after successful authentication.
|
| std::string authenticated_username_;
|
| + std::string authenticated_account_id_;
|
|
|
| // The list of SigninDiagnosticObservers.
|
| ObserverList<signin_internals_util::SigninDiagnosticsObserver, true>
|
|
|