Index: chrome/browser/signin/signin_global_error.cc |
diff --git a/chrome/browser/signin/signin_global_error.cc b/chrome/browser/signin/signin_global_error.cc |
index 8ef52877a9cdc376446d9ac17b33d3f4fa6e6ed7..5cde11546536f9aa0ed307f50c33e06ddb720a0a 100644 |
--- a/chrome/browser/signin/signin_global_error.cc |
+++ b/chrome/browser/signin/signin_global_error.cc |
@@ -19,7 +19,7 @@ |
#include "ui/base/l10n/l10n_util.h" |
SigninGlobalError::SigninGlobalError(SigninManager* manager, Profile* profile) |
- : auth_error_(GoogleServiceAuthError::None()), |
+ : auth_error_(GoogleServiceAuthError::AuthErrorNone()), |
signin_manager_(manager), |
profile_(profile) { |
} |
@@ -54,7 +54,7 @@ SigninGlobalError::AuthStatusProvider::~AuthStatusProvider() { |
void SigninGlobalError::AuthStatusChanged() { |
// Walk all of the status providers and collect any error. |
- GoogleServiceAuthError current_error(GoogleServiceAuthError::None()); |
+ GoogleServiceAuthError current_error(GoogleServiceAuthError::AuthErrorNone()); |
for (std::set<const AuthStatusProvider*>::const_iterator it = |
provider_set_.begin(); it != provider_set_.end(); ++it) { |
current_error = (*it)->GetAuthStatus(); |