Searched refs:GoogleServiceAuthError (Results 176 - 200 of 227) sorted by path

12345678910

/external/chromium_org/components/signin/core/browser/
H A Dsignin_error_controller_unittest.cc53 GoogleServiceAuthError(
54 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS));
75 GoogleServiceAuthError(
76 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS));
81 GoogleServiceAuthError(GoogleServiceAuthError::ACCOUNT_DISABLED));
87 GoogleServiceAuthError::AuthErrorNone());
91 GoogleServiceAuthError::AuthErrorNone());
110 GoogleServiceAuthError(
111 GoogleServiceAuthError
[all...]
H A Dsignin_manager.cc112 GoogleServiceAuthError(GoogleServiceAuthError::ACCOUNT_DISABLED));
170 void SigninManager::HandleAuthError(const GoogleServiceAuthError& error) {
185 GoogleServiceAuthError error(GoogleServiceAuthError::REQUEST_CANCELED);
H A Dsignin_manager.h173 void HandleAuthError(const GoogleServiceAuthError& error);
H A Dsignin_manager_base.h48 virtual void GoogleSigninFailed(const GoogleServiceAuthError& error) {}
H A Dsignin_oauth_helper.cc33 const GoogleServiceAuthError& error) {
43 const GoogleServiceAuthError& error) {
56 GoogleServiceAuthError(GoogleServiceAuthError::SERVICE_ERROR));
67 const GoogleServiceAuthError& error) {
H A Dsignin_oauth_helper.h34 const GoogleServiceAuthError& error) {}
46 virtual void OnClientOAuthFailure(const GoogleServiceAuthError& error)
49 virtual void OnClientLoginFailure(const GoogleServiceAuthError& error)
52 virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error)
H A Dsignin_tracker.cc45 void SigninTracker::GoogleSigninFailed(const GoogleServiceAuthError& error) {
71 const GoogleServiceAuthError& error) {
H A Dsignin_tracker.h58 virtual void SigninFailed(const GoogleServiceAuthError& error) = 0;
65 virtual void MergeSessionComplete(const GoogleServiceAuthError& error) = 0;
81 virtual void GoogleSigninFailed(const GoogleServiceAuthError& error) OVERRIDE;
94 const GoogleServiceAuthError& error) OVERRIDE;
/external/chromium_org/components/signin/ios/browser/
H A Dprofile_oauth2_token_service_ios.h46 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/drive/
H A Dauth_service.cc52 const GoogleServiceAuthError& error) OVERRIDE;
94 const GoogleServiceAuthError& error) {
103 if (error.state() == GoogleServiceAuthError::CONNECTION_FAILED) {
106 } else if (error.state() == GoogleServiceAuthError::SERVICE_UNAVAILABLE) {
/external/chromium_org/google_apis/gaia/
H A Daccount_tracker.cc299 const GoogleServiceAuthError& error) {
H A Daccount_tracker.h18 class GoogleServiceAuthError;
134 const GoogleServiceAuthError& error) OVERRIDE;
H A Dfake_oauth2_token_service.cc75 GoogleServiceAuthError::AuthErrorNone(), access_token, expiration);
82 const GoogleServiceAuthError& auth_error) {
H A Dfake_oauth2_token_service.h37 const GoogleServiceAuthError& auth_error);
H A Dgaia_auth_consumer.h12 class GoogleServiceAuthError;
65 virtual void OnClientLoginFailure(const GoogleServiceAuthError& error) {}
70 const GoogleServiceAuthError& error) {}
73 virtual void OnClientOAuthFailure(const GoogleServiceAuthError& error) {}
78 virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error) {}
81 virtual void OnUberAuthTokenFailure(const GoogleServiceAuthError& error) {}
84 virtual void OnMergeSessionFailure(const GoogleServiceAuthError& error) {}
87 virtual void OnListAccountsFailure(const GoogleServiceAuthError& error) {}
91 const GoogleServiceAuthError& error) {}
H A Dgaia_auth_fetcher.cc724 GoogleServiceAuthError GaiaAuthFetcher::GenerateAuthError(
729 return GoogleServiceAuthError(GoogleServiceAuthError::REQUEST_CANCELED);
733 return GoogleServiceAuthError::FromConnectionError(status.error());
737 return GoogleServiceAuthError(GoogleServiceAuthError::TWO_FACTOR);
747 return GoogleServiceAuthError::FromClientLoginCaptchaChallenge(
753 return GoogleServiceAuthError(GoogleServiceAuthError::ACCOUNT_DELETED);
755 return GoogleServiceAuthError(GoogleServiceAuthErro
[all...]
H A Dgaia_auth_fetcher.h202 static GoogleServiceAuthError GenerateOAuthLoginError(
388 static GoogleServiceAuthError GenerateAuthError(
H A Dgaia_auth_fetcher_unittest.cc181 void(const GoogleServiceAuthError& error));
183 const GoogleServiceAuthError& error));
185 void(const GoogleServiceAuthError& error));
187 const GoogleServiceAuthError& error));
189 const GoogleServiceAuthError& error));
201 GoogleServiceAuthError expected_error =
202 GoogleServiceAuthError::FromConnectionError(-101);
204 GoogleServiceAuthError matching_error =
205 GoogleServiceAuthError::FromConnectionError(-101);
209 expected_error = GoogleServiceAuthError
[all...]
H A Dgoogle_service_auth_error.cc16 GoogleServiceAuthError::Captcha::Captcha() : image_width(0), image_height(0) {
19 GoogleServiceAuthError::Captcha::Captcha(
26 GoogleServiceAuthError::Captcha::~Captcha() {
29 bool GoogleServiceAuthError::Captcha::operator==(const Captcha& b) const {
38 GoogleServiceAuthError::SecondFactor::SecondFactor() : field_length(0) {
41 GoogleServiceAuthError::SecondFactor::SecondFactor(
48 GoogleServiceAuthError::SecondFactor::~SecondFactor() {
51 bool GoogleServiceAuthError::SecondFactor::operator==(
59 bool GoogleServiceAuthError::operator==(
60 const GoogleServiceAuthError
67 GoogleServiceAuthError::GoogleServiceAuthError(State s) function in class:GoogleServiceAuthError
76 GoogleServiceAuthError::GoogleServiceAuthError( function in class:GoogleServiceAuthError
238 GoogleServiceAuthError::GoogleServiceAuthError(State s, int error) function in class:GoogleServiceAuthError
243 GoogleServiceAuthError::GoogleServiceAuthError( function in class:GoogleServiceAuthError
[all...]
H A Dgoogle_service_auth_error.h5 // A GoogleServiceAuthError is immutable, plain old data representing an
11 // A GoogleServiceAuthError without additional data is just a State, defined
13 // error events concisely by doing OnAuthError(GoogleServiceAuthError::NONE),
19 // may forward declare and typedef GoogleServiceAuthError to something shorter
33 class GoogleServiceAuthError { class
138 bool operator==(const GoogleServiceAuthError &b) const;
140 // Construct a GoogleServiceAuthError from a State with no additional data.
141 explicit GoogleServiceAuthError(State s);
143 // Construct a GoogleServiceAuthError from a network error.
145 static GoogleServiceAuthError FromConnectionErro
[all...]
H A Dgoogle_service_auth_error_unittest.cc21 void TestSimpleState(GoogleServiceAuthError::State state) {
22 GoogleServiceAuthError error(state);
33 for (int i = GoogleServiceAuthError::NONE;
34 i <= GoogleServiceAuthError::USER_NOT_SIGNED_UP; ++i) {
35 TestSimpleState(static_cast<GoogleServiceAuthError::State>(i));
40 GoogleServiceAuthError error(GoogleServiceAuthError::AuthErrorNone());
47 GoogleServiceAuthError error(
48 GoogleServiceAuthError::FromConnectionError(net::OK));
H A Dmerge_session_helper.cc213 GoogleServiceAuthError error(GoogleServiceAuthError::REQUEST_CANCELED);
246 const GoogleServiceAuthError& error) {
286 const GoogleServiceAuthError& error) {
299 SignalComplete(account_id, GoogleServiceAuthError::AuthErrorNone());
303 const GoogleServiceAuthError& error) {
H A Dmerge_session_helper.h17 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)
H A Dmerge_session_helper_unittest.cc35 const GoogleServiceAuthError& ));
71 : no_error_(GoogleServiceAuthError::NONE),
72 error_(GoogleServiceAuthError::SERVICE_ERROR),
73 canceled_(GoogleServiceAuthError::REQUEST_CANCELED),
83 const GoogleServiceAuthError& error) {
93 const GoogleServiceAuthError& error) {
121 const GoogleServiceAuthError& no_error() { return no_error_; }
122 const GoogleServiceAuthError& error() { return error_; }
123 const GoogleServiceAuthError& canceled() { return canceled_; }
131 GoogleServiceAuthError no_error
[all...]
H A Doauth2_access_token_consumer.h10 class GoogleServiceAuthError;
25 virtual void OnGetTokenFailure(const GoogleServiceAuthError& error) {}

Completed in 1066 milliseconds

12345678910