Home
last modified time | relevance | path

Searched refs:auth_error (Results 1 – 10 of 10) sorted by relevance

/external/chromium/chrome/common/net/gaia/
Dgaia_authenticator.cc29 GaiaAuthenticator::AuthResults::AuthResults() : auth_error(None) {} in AuthResults()
105 results.auth_error, this }; in AuthenticateImpl()
122 results->auth_error = ConnectionUnavailable; in AuthenticateImpl()
177 results->auth_error = ConnectionUnavailable; in PerformGaiaRequest()
194 results->auth_error = Unknown; in PerformGaiaRequest()
340 results->auth_error = BadAuthentication; in ExtractAuthErrorFrom()
342 results->auth_error = NotVerified; in ExtractAuthErrorFrom()
344 results->auth_error = TermsNotAgreed; in ExtractAuthErrorFrom()
346 results->auth_error = Unknown; in ExtractAuthErrorFrom()
348 results->auth_error = AccountDeleted; in ExtractAuthErrorFrom()
[all …]
Dgaia_authenticator.h149 enum AuthenticationError auth_error; member
228 inline enum AuthenticationError auth_error() const { in auth_error() function
230 return auth_results_.auth_error; in auth_error()
/external/chromium/chrome/browser/sync/
Dsync_ui_util.cc35 void GetStatusLabelsForAuthError(const AuthError& auth_error, in GetStatusLabelsForAuthError() argument
40 if (auth_error.state() == AuthError::INVALID_GAIA_CREDENTIALS || in GetStatusLabelsForAuthError()
41 auth_error.state() == AuthError::ACCOUNT_DELETED || in GetStatusLabelsForAuthError()
42 auth_error.state() == AuthError::ACCOUNT_DISABLED) { in GetStatusLabelsForAuthError()
51 } else if (auth_error.state() == AuthError::SERVICE_UNAVAILABLE) { in GetStatusLabelsForAuthError()
55 } else if (auth_error.state() == AuthError::CONNECTION_FAILED) { in GetStatusLabelsForAuthError()
103 const AuthError& auth_error = service->GetAuthError(); in GetStatusInfo() local
112 DCHECK_EQ(auth_error.state(), AuthError::NONE); in GetStatusInfo()
137 } else if (auth_error.state() != AuthError::NONE) { in GetStatusInfo()
139 GetStatusLabelsForAuthError(auth_error, service, in GetStatusInfo()
[all …]
Djs_sync_manager_observer.cc60 const GoogleServiceAuthError& auth_error) { in OnAuthError() argument
62 return_args.Append(auth_error.ToValue()); in OnAuthError()
Djs_sync_manager_observer.h35 virtual void OnAuthError(const GoogleServiceAuthError& auth_error);
/external/chromium/chrome/browser/chromeos/login/
Dgoogle_authenticator_unittest.cc416 GoogleServiceAuthError auth_error = in TEST_F() local
422 LoginFailure failure = LoginFailure::FromNetworkAuthFailure(auth_error); in TEST_F()
431 auth->OnClientLoginFailure(auth_error); in TEST_F()
436 GoogleServiceAuthError auth_error( in TEST_F() local
452 auth->OnClientLoginFailure(auth_error); in TEST_F()
Donline_attempt_unittest.cc257 GoogleServiceAuthError auth_error = in TEST_F() local
262 RunFailureTest(auth_error); in TEST_F()
/external/chromium/chrome/browser/sync/glue/
Dsync_backend_host.h279 virtual void OnAuthError(const GoogleServiceAuthError& auth_error);
Dsync_backend_host.cc966 void SyncBackendHost::Core::OnAuthError(const AuthError& auth_error) { in OnAuthError() argument
970 auth_error)); in OnAuthError()
/external/chromium/chrome/browser/sync/engine/
Dsyncapi.h776 virtual void OnAuthError(const GoogleServiceAuthError& auth_error) = 0;