| Index: chrome/common/net/gaia/gaia_auth_fetcher.cc
|
| diff --git a/chrome/common/net/gaia/gaia_auth_fetcher.cc b/chrome/common/net/gaia/gaia_auth_fetcher.cc
|
| index 65318ffb5bc2da83e08711b2f0e79da32e48c950..c8edd96d1055d4f1e22084d36aefa82bcd712da0 100644
|
| --- a/chrome/common/net/gaia/gaia_auth_fetcher.cc
|
| +++ b/chrome/common/net/gaia/gaia_auth_fetcher.cc
|
| @@ -8,9 +8,9 @@
|
| #include <utility>
|
| #include <vector>
|
|
|
| -#include "base/stringprintf.h"
|
| #include "base/string_split.h"
|
| #include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "chrome/common/net/gaia/gaia_auth_consumer.h"
|
| #include "chrome/common/net/gaia/gaia_constants.h"
|
| #include "chrome/common/net/gaia/gaia_urls.h"
|
| @@ -408,8 +408,8 @@ GoogleServiceAuthError GaiaAuthFetcher::GenerateAuthError(
|
| return GoogleServiceAuthError(GoogleServiceAuthError::REQUEST_CANCELED);
|
| } else {
|
| LOG(WARNING) << "Could not reach Google Accounts servers: errno "
|
| - << status.os_error();
|
| - return GoogleServiceAuthError::FromConnectionError(status.os_error());
|
| + << status.error();
|
| + return GoogleServiceAuthError::FromConnectionError(status.error());
|
| }
|
| } else {
|
| if (IsSecondFactorSuccess(data)) {
|
| @@ -461,8 +461,8 @@ GoogleServiceAuthError GaiaAuthFetcher::GenerateOAuthLoginError(
|
| return GoogleServiceAuthError(GoogleServiceAuthError::REQUEST_CANCELED);
|
| } else {
|
| LOG(WARNING) << "Could not reach Google Accounts servers: errno "
|
| - << status.os_error();
|
| - return GoogleServiceAuthError::FromConnectionError(status.os_error());
|
| + << status.error();
|
| + return GoogleServiceAuthError::FromConnectionError(status.error());
|
| }
|
| } else {
|
| if (IsSecondFactorSuccess(data)) {
|
|
|