/external/chromium_org/chrome/browser/signin/ |
easy_unlock_toggle_flow.h | 39 const GoogleServiceAuthError& error) OVERRIDE; 45 const GoogleServiceAuthError& error) OVERRIDE;
|
signin_ui_util.cc | 111 const GoogleServiceAuthError::State state = 115 case GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS: 116 case GoogleServiceAuthError::SERVICE_ERROR: 117 case GoogleServiceAuthError::ACCOUNT_DELETED: 118 case GoogleServiceAuthError::ACCOUNT_DISABLED: 133 case GoogleServiceAuthError::SERVICE_UNAVAILABLE: 141 case GoogleServiceAuthError::CONNECTION_FAILED:
|
fake_account_reconcilor.cc | 33 callback.Run(GoogleServiceAuthError::AuthErrorNone(), gaia_accounts);
|
fake_profile_oauth2_token_service.h | 38 // IssueErrorForScope(scopes, GoogleServiceAuthError(INVALID_GAIA_CREDENTIALS)); 99 const GoogleServiceAuthError& error); 106 const GoogleServiceAuthError& error); 111 void IssueErrorForAllPendingRequests(const GoogleServiceAuthError& error); 147 const GoogleServiceAuthError& error,
|
/external/chromium_org/chrome/browser/supervised_user/ |
supervised_user_registration_utility.h | 23 class GoogleServiceAuthError; 56 typedef base::Callback<void(const GoogleServiceAuthError& /* error */,
|
supervised_user_refresh_token_fetcher.cc | 76 const GoogleServiceAuthError& error) OVERRIDE; 96 void DispatchGoogleServiceAuthError(const GoogleServiceAuthError& error, 187 const GoogleServiceAuthError& error) { 215 GoogleServiceAuthError(GoogleServiceAuthError::CONNECTION_FAILED), 249 DispatchGoogleServiceAuthError(GoogleServiceAuthError::AuthErrorNone(), 261 GoogleServiceAuthError(GoogleServiceAuthError::CONNECTION_FAILED), 269 GoogleServiceAuthError(GoogleServiceAuthError::CONNECTION_FAILED) [all...] |
supervised_user_registration_utility_unittest.cc | 84 GoogleServiceAuthError error(GoogleServiceAuthError::NONE); 120 const GoogleServiceAuthError& error() const { return error_; } 124 void OnSupervisedUserRegistered(const GoogleServiceAuthError& error, 144 GoogleServiceAuthError error_; 154 error_(GoogleServiceAuthError::NUM_STATES), 241 const GoogleServiceAuthError& error, 259 EXPECT_EQ(GoogleServiceAuthError::NONE, error().state()); 273 EXPECT_EQ(GoogleServiceAuthError::NONE, error().state()); 288 EXPECT_EQ(GoogleServiceAuthError::REQUEST_CANCELED, error().state()) [all...] |
supervised_user_registration_utility.cc | 77 void OnReceivedToken(const GoogleServiceAuthError& error, 86 const GoogleServiceAuthError& error); 92 const GoogleServiceAuthError& error); 317 GoogleServiceAuthError(GoogleServiceAuthError::NONE)); 339 GoogleServiceAuthError(GoogleServiceAuthError::REQUEST_CANCELED)); 353 const GoogleServiceAuthError& error, 355 if (error.state() != GoogleServiceAuthError::NONE) { 376 GoogleServiceAuthError error(GoogleServiceAuthError::NONE) [all...] |
supervised_user_registration_utility_stub.h | 35 void RunFailureCallback(GoogleServiceAuthError::State error);
|
/external/chromium_org/chrome/browser/sync/ |
sync_startup_tracker_unittest.cc | 30 no_error_(GoogleServiceAuthError::NONE) { 65 GoogleServiceAuthError no_error_; 95 GoogleServiceAuthError error( 96 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS); 128 GoogleServiceAuthError error( 129 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS); 148 GoogleServiceAuthError error( 149 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS);
|
profile_sync_auth_provider.cc | 92 GoogleServiceAuthError error(GoogleServiceAuthError::REQUEST_CANCELED); 106 RespondToTokenRequest(GoogleServiceAuthError::AuthErrorNone(), access_token); 111 const GoogleServiceAuthError& error) { 117 const GoogleServiceAuthError& error,
|
/external/chromium_org/components/signin/core/browser/ |
profile_oauth2_token_service.h | 20 class GoogleServiceAuthError; 94 const GoogleServiceAuthError& error) OVERRIDE;
|
account_service_flag_fetcher.h | 66 const GoogleServiceAuthError& error) OVERRIDE; 70 virtual void OnClientLoginFailure(const GoogleServiceAuthError& error) 73 virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error)
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/ |
authenticated_user_email_retriever.h | 42 virtual void OnListAccountsFailure(const GoogleServiceAuthError& error)
|
enrollment_screen_handler.cc | 232 const GoogleServiceAuthError& error) { 234 case GoogleServiceAuthError::NONE: 235 case GoogleServiceAuthError::CAPTCHA_REQUIRED: 236 case GoogleServiceAuthError::TWO_FACTOR: 237 case GoogleServiceAuthError::HOSTED_NOT_ALLOWED: 238 case GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS: 239 case GoogleServiceAuthError::REQUEST_CANCELED: 240 case GoogleServiceAuthError::UNEXPECTED_SERVICE_RESPONSE: 241 case GoogleServiceAuthError::SERVICE_ERROR: 244 case GoogleServiceAuthError::USER_NOT_SIGNED_UP [all...] |
/external/chromium_org/components/signin/ios/browser/ |
profile_oauth2_token_service_ios.h | 46 const GoogleServiceAuthError& error) OVERRIDE; 92 void SetLastAuthError(const GoogleServiceAuthError& error); 97 virtual GoogleServiceAuthError GetAuthStatus() const OVERRIDE; 102 GoogleServiceAuthError last_auth_error_;
|
/external/chromium_org/google_apis/gaia/ |
oauth2_access_token_fetcher.h | 50 void FireOnGetTokenFailure(const GoogleServiceAuthError& error);
|
ubertoken_fetcher.cc | 49 const GoogleServiceAuthError& error) { 52 error.state() == GoogleServiceAuthError::CONNECTION_FAILED || 53 error.state() == GoogleServiceAuthError::SERVICE_UNAVAILABLE; 95 const GoogleServiceAuthError& error) {
|
merge_session_helper.h | 17 class GoogleServiceAuthError; 39 // GoogleServiceAuthError::AuthErrorNone() then the merge succeeeded. 41 const GoogleServiceAuthError& error) = 0; 133 const GoogleServiceAuthError& error); 151 virtual void OnUbertokenFailure(const GoogleServiceAuthError& error) OVERRIDE; 155 virtual void OnMergeSessionFailure(const GoogleServiceAuthError& error)
|
oauth2_token_service_request_unittest.cc | 31 const GoogleServiceAuthError& error) OVERRIDE; 36 GoogleServiceAuthError last_error_; 43 last_error_(GoogleServiceAuthError::AuthErrorNone()) { 59 const GoogleServiceAuthError& error) { 72 void SetResponse(const GoogleServiceAuthError& error, 96 GoogleServiceAuthError response_error_; 104 : response_error_(GoogleServiceAuthError::AuthErrorNone()), 113 void MockOAuth2TokenService::SetResponse(const GoogleServiceAuthError& error, 208 GoogleServiceAuthError(GoogleServiceAuthError::SERVICE_UNAVAILABLE) [all...] |
/external/chromium_org/chrome/browser/chromeos/login/signin/ |
oauth2_login_verifier.cc | 39 bool IsConnectionOrServiceError(const GoogleServiceAuthError& error) { 40 return error.state() == GoogleServiceAuthError::CONNECTION_FAILED || 41 error.state() == GoogleServiceAuthError::SERVICE_UNAVAILABLE || 42 error.state() == GoogleServiceAuthError::REQUEST_CANCELED; 135 const GoogleServiceAuthError& error) { 182 const GoogleServiceAuthError& error) { 210 const GoogleServiceAuthError& error) { 220 GoogleServiceAuthError::NUM_STATES); 232 const GoogleServiceAuthError& error) { 246 const GoogleServiceAuthError& error [all...] |
oauth2_token_fetcher.cc | 103 const GoogleServiceAuthError& error) { 118 void OAuth2TokenFetcher::RetryOnError(const GoogleServiceAuthError& error, 122 if ((error.state() == GoogleServiceAuthError::CONNECTION_FAILED || 123 error.state() == GoogleServiceAuthError::SERVICE_UNAVAILABLE || 124 error.state() == GoogleServiceAuthError::REQUEST_CANCELED) &&
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
wildcard_login_checker.cc | 79 const GoogleServiceAuthError& error) { 86 const GoogleServiceAuthError& error) { 87 if (error.state() != GoogleServiceAuthError::NONE) {
|
/external/chromium_org/chrome/browser/chromeos/settings/ |
device_oauth2_token_service.cc | 60 FlushPendingRequests(false, GoogleServiceAuthError::REQUEST_CANCELED); 73 FlushPendingRequests(false, GoogleServiceAuthError::REQUEST_CANCELED); 133 FlushPendingRequests(false, GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS); 142 FlushPendingRequests(false, GoogleServiceAuthError::CONNECTION_FAILED); 190 FailRequest(request, GoogleServiceAuthError::USER_NOT_SIGNED_UP); 193 FailRequest(request, GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS); 279 FlushPendingRequests(false, GoogleServiceAuthError::USER_NOT_SIGNED_UP); 286 FlushPendingRequests(true, GoogleServiceAuthError::NONE); 296 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS); 342 GoogleServiceAuthError::State error) [all...] |
/external/chromium_org/chrome/browser/chromeos/login/enrollment/ |
mock_enrollment_screen.h | 40 MOCK_METHOD1(ShowAuthError, void(const GoogleServiceAuthError&));
|