| Index: chrome/browser/chromeos/login/login_utils.cc
|
| diff --git a/chrome/browser/chromeos/login/login_utils.cc b/chrome/browser/chromeos/login/login_utils.cc
|
| index 35b7b06e2cb3cc787ab6100f543ec0f39f6d0b27..48a65f3f4ad031ca32318f3904a9481d4c524e18 100644
|
| --- a/chrome/browser/chromeos/login/login_utils.cc
|
| +++ b/chrome/browser/chromeos/login/login_utils.cc
|
| @@ -637,9 +637,10 @@ void LoginUtilsImpl::InitRlz(Profile* user_profile, bool disabled) {
|
|
|
| void LoginUtilsImpl::StartSignedInServices(Profile* user_profile) {
|
| // Fetch/Create the SigninManager - this will cause the TokenService to load
|
| - // tokens for the currently signed-in user if the SigninManager hasn't already
|
| - // been initialized.
|
| - SigninManager* signin = SigninManagerFactory::GetForProfile(user_profile);
|
| + // tokens for the currently signed-in user if the SigninManager hasn't
|
| + // already been initialized.
|
| + SigninManagerBase* signin =
|
| + SigninManagerFactory::GetForProfile(user_profile);
|
| DCHECK(signin);
|
| // Make sure SigninManager is connected to our current user (this should
|
| // happen automatically because we set kGoogleServicesUsername in
|
|
|