Searched refs:GoogleServiceAuthError (Results 1 - 25 of 227) sorted by path

12345678910

/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
H A DGoogleServiceAuthError.java10 * This class mirrors the native GoogleServiceAuthError class State enum from:
13 public class GoogleServiceAuthError { class
81 GoogleServiceAuthError(int code) { method in class:GoogleServiceAuthError
H A DProfileSyncService.java356 public GoogleServiceAuthError.State getAuthError() {
358 return GoogleServiceAuthError.State.fromCode(authErrorCode);
/external/chromium_org/chrome/browser/android/signin/
H A Dsignin_manager_android.cc227 const GoogleServiceAuthError& error) {
H A Dsignin_manager_android.h19 class GoogleServiceAuthError;
78 const GoogleServiceAuthError& error) OVERRIDE;
/external/chromium_org/chrome/browser/chromeos/login/auth/
H A Dlogin_performer.h96 const GoogleServiceAuthError& error() const {
H A Donline_attempt_unittest.cc71 void RunFailureTest(const GoogleServiceAuthError& error) {
109 GoogleServiceAuthError error(GoogleServiceAuthError::REQUEST_CANCELED);
156 GoogleServiceAuthError(GoogleServiceAuthError::HOSTED_NOT_ALLOWED)));
200 GoogleServiceAuthError::FromConnectionError(net::ERR_CONNECTION_RESET));
205 GoogleServiceAuthError(GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS));
210 GoogleServiceAuthError(GoogleServiceAuthError
[all...]
/external/chromium_org/chrome/browser/chromeos/login/enrollment/
H A Denrollment_screen.cc163 void EnrollmentScreen::OnAuthError(const GoogleServiceAuthError& error) {
165 case GoogleServiceAuthError::NONE:
166 case GoogleServiceAuthError::CAPTCHA_REQUIRED:
167 case GoogleServiceAuthError::TWO_FACTOR:
168 case GoogleServiceAuthError::HOSTED_NOT_ALLOWED:
169 case GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS:
170 case GoogleServiceAuthError::REQUEST_CANCELED:
171 case GoogleServiceAuthError::UNEXPECTED_SERVICE_RESPONSE:
172 case GoogleServiceAuthError::SERVICE_ERROR:
176 case GoogleServiceAuthError
[all...]
H A Denrollment_screen.h80 virtual void OnAuthError(const GoogleServiceAuthError& error) OVERRIDE;
H A Denrollment_screen_actor.h14 class GoogleServiceAuthError;
22 // are not covered by GoogleServiceAuthError or EnrollmentStatus.
49 virtual void OnAuthError(const GoogleServiceAuthError& error) = 0;
89 virtual void ShowAuthError(const GoogleServiceAuthError& error) = 0;
H A Dmock_enrollment_screen.h40 MOCK_METHOD1(ShowAuthError, void(const GoogleServiceAuthError&));
/external/chromium_org/chrome/browser/chromeos/login/
H A Dexisting_user_controller.cc837 GoogleServiceAuthError::HOSTED_NOT_ALLOWED) {
1219 case GoogleServiceAuthError::CONNECTION_FAILED:
1222 case GoogleServiceAuthError::ACCOUNT_DISABLED:
1225 case GoogleServiceAuthError::HOSTED_NOT_ALLOWED:
/external/chromium_org/chrome/browser/chromeos/login/signin/
H A Dauth_sync_observer.cc53 GoogleServiceAuthError::State state =
55 if (state != GoogleServiceAuthError::NONE &&
56 state != GoogleServiceAuthError::CONNECTION_FAILED &&
57 state != GoogleServiceAuthError::SERVICE_UNAVAILABLE &&
58 state != GoogleServiceAuthError::REQUEST_CANCELED) {
83 } else if (state == GoogleServiceAuthError::NONE) {
H A Doauth2_login_manager.h20 class GoogleServiceAuthError;
206 bool RetryOnError(const GoogleServiceAuthError& error);
H A Doauth2_login_verifier.cc39 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
[all...]
H A Doauth2_login_verifier.h71 const GoogleServiceAuthError& error) OVERRIDE;
74 const GoogleServiceAuthError& error) OVERRIDE;
77 const GoogleServiceAuthError& error) OVERRIDE;
84 const GoogleServiceAuthError& error) OVERRIDE;
105 const GoogleServiceAuthError& error,
H A Doauth2_token_fetcher.cc103 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) &&
H A Doauth2_token_fetcher.h50 void RetryOnError(const GoogleServiceAuthError& error,
58 const GoogleServiceAuthError& error) OVERRIDE;
/external/chromium_org/chrome/browser/chromeos/login/supervised/
H A Dsupervised_user_creation_controller_new.cc339 const GoogleServiceAuthError& error,
346 if (error.state() == GoogleServiceAuthError::NONE) {
H A Dsupervised_user_creation_controller_new.h162 void RegistrationCallback(const GoogleServiceAuthError& error,
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dconsumer_management_service.cc305 const GoogleServiceAuthError& error) {
H A Dconsumer_management_service.h166 const GoogleServiceAuthError& error) OVERRIDE;
H A Dconsumer_management_service_unittest.cc345 GoogleServiceAuthError(GoogleServiceAuthError::SERVICE_ERROR));
H A Dpolicy_oauth2_token_fetcher.cc80 const GoogleServiceAuthError& error) {
93 GoogleServiceAuthError(GoogleServiceAuthError::NONE));
97 const GoogleServiceAuthError& error) {
104 void PolicyOAuth2TokenFetcher::RetryOnError(const GoogleServiceAuthError& error,
107 if ((error.state() == GoogleServiceAuthError::CONNECTION_FAILED ||
108 error.state() == GoogleServiceAuthError::SERVICE_UNAVAILABLE ||
109 error.state() == GoogleServiceAuthError::REQUEST_CANCELED) &&
128 const GoogleServiceAuthError& error) {
H A Dpolicy_oauth2_token_fetcher.h39 const GoogleServiceAuthError&)> TokenCallback;
70 const GoogleServiceAuthError& error) OVERRIDE;
75 virtual void OnGetTokenFailure(const GoogleServiceAuthError& error) OVERRIDE;
87 void RetryOnError(const GoogleServiceAuthError& error,
92 const GoogleServiceAuthError& error);
H A Duser_cloud_policy_manager_chromeos.cc160 access_token, GoogleServiceAuthError(GoogleServiceAuthError::NONE));
299 std::string(), GoogleServiceAuthError(GoogleServiceAuthError::NONE));
313 const GoogleServiceAuthError& error) {
321 if (error.state() == GoogleServiceAuthError::NONE) {
332 GoogleServiceAuthError::NUM_STATES);
333 if (error.state() == GoogleServiceAuthError::CONNECTION_FAILED) {

Completed in 1745 milliseconds

12345678910