| Index: chrome/browser/chromeos/login/google_authenticator.cc
|
| diff --git a/chrome/browser/chromeos/login/google_authenticator.cc b/chrome/browser/chromeos/login/google_authenticator.cc
|
| index 94361be00606337d575159a885ce81d3673b8be7..c52b0c661d2ce92168845e73b5a696ef0f5b19cf 100644
|
| --- a/chrome/browser/chromeos/login/google_authenticator.cc
|
| +++ b/chrome/browser/chromeos/login/google_authenticator.cc
|
| @@ -26,6 +26,7 @@
|
| #include "chrome/browser/profile_manager.h"
|
| #include "chrome/common/chrome_paths.h"
|
| #include "chrome/common/net/gaia/gaia_authenticator2.h"
|
| +#include "chrome/common/net/gaia/gaia_constants.h"
|
| #include "chrome/common/notification_service.h"
|
| #include "net/base/load_flags.h"
|
| #include "net/base/net_errors.h"
|
| @@ -71,7 +72,7 @@ void GoogleAuthenticator::CancelClientLogin() {
|
| void GoogleAuthenticator::TryClientLogin() {
|
| gaia_authenticator_->StartClientLogin(username_,
|
| password_,
|
| - GaiaAuthenticator2::kContactsService,
|
| + GaiaConstants::kContactsService,
|
| login_token_,
|
| login_captcha_);
|
| ChromeThread::PostDelayedTask(
|
| @@ -114,7 +115,7 @@ bool GoogleAuthenticator::AuthenticateToLogin(
|
|
|
| gaia_authenticator_.reset(
|
| new GaiaAuthenticator2(this,
|
| - GaiaAuthenticator2::kChromeOSSource,
|
| + GaiaConstants::kChromeOSSource,
|
| profile->GetRequestContext()));
|
| // Will be used for retries.
|
| PrepareClientLoginAttempt(password, login_token, login_captcha);
|
|
|