HomeSort by relevance Sort by last modified time
    Searched refs:GoogleServiceAuthError (Results 1 - 25 of 209) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium_org/chrome/browser/signin/
fake_auth_status_provider.h 20 void SetAuthError(const GoogleServiceAuthError& error);
23 virtual GoogleServiceAuthError GetAuthStatus() const OVERRIDE;
27 GoogleServiceAuthError auth_error_;
signin_global_error_unittest.cc 59 error_provider.SetAuthError(GoogleServiceAuthError(
60 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS));
76 GoogleServiceAuthError(
77 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS));
80 GoogleServiceAuthError(GoogleServiceAuthError::ACCOUNT_DISABLED));
84 provider0.SetAuthError(GoogleServiceAuthError::AuthErrorNone());
86 provider1.SetAuthError(GoogleServiceAuthError::AuthErrorNone());
95 GoogleServiceAuthError::State error_state;
100 { GoogleServiceAuthError::NONE, false }
    [all...]
fake_auth_status_provider.cc 9 auth_error_(GoogleServiceAuthError::AuthErrorNone()) {
17 GoogleServiceAuthError FakeAuthStatusProvider::GetAuthStatus() const {
21 void FakeAuthStatusProvider::SetAuthError(const GoogleServiceAuthError& error) {
ubertoken_fetcher.h 22 class GoogleServiceAuthError;
31 virtual void OnUbertokenFailure(const GoogleServiceAuthError& error) {}
47 const GoogleServiceAuthError& error) OVERRIDE;
54 const GoogleServiceAuthError& error) OVERRIDE;
oauth2_token_service_test_util.h 30 const GoogleServiceAuthError& error) OVERRIDE;
34 GoogleServiceAuthError last_error_;
signin_global_error.cc 28 : auth_error_(GoogleServiceAuthError::AuthErrorNone()), profile_(profile) {
61 GoogleServiceAuthError current_error(GoogleServiceAuthError::AuthErrorNone());
69 if (current_error.state() != GoogleServiceAuthError::NONE &&
70 current_error.state() != GoogleServiceAuthError::CONNECTION_FAILED) {
96 auth_error_.state() == GoogleServiceAuthError::NONE ||
97 auth_error_.state() == GoogleServiceAuthError::CONNECTION_FAILED) {
109 if (auth_error_.state() != GoogleServiceAuthError::NONE) {
152 case GoogleServiceAuthError::CONNECTION_FAILED:
153 case GoogleServiceAuthError::NONE
    [all...]
ubertoken_fetcher_unittest.cc 21 last_error_(GoogleServiceAuthError::AuthErrorNone()),
31 virtual void OnUbertokenFailure(const GoogleServiceAuthError& error)
39 GoogleServiceAuthError last_error_;
101 GoogleServiceAuthError error(GoogleServiceAuthError::USER_NOT_SIGNED_UP);
108 GoogleServiceAuthError error(GoogleServiceAuthError::USER_NOT_SIGNED_UP);
121 GoogleServiceAuthError error(GoogleServiceAuthError::USER_NOT_SIGNED_UP);
  /external/chromium/chrome/common/net/gaia/
google_service_auth_error.cc 13 GoogleServiceAuthError::Captcha::Captcha(
17 bool GoogleServiceAuthError::operator==(
18 const GoogleServiceAuthError &b) const {
26 GoogleServiceAuthError::GoogleServiceAuthError(State s)
36 GoogleServiceAuthError
37 GoogleServiceAuthError::FromConnectionError(int error) {
38 return GoogleServiceAuthError(CONNECTION_FAILED, error);
41 GoogleServiceAuthError GoogleServiceAuthError::FromCaptchaChallenge
    [all...]
google_service_auth_error.h 5 // 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
32 class GoogleServiceAuthError {
90 bool operator==(const GoogleServiceAuthError &b) const;
92 // Construct a GoogleServiceAuthError from a State with no additional data.
93 explicit GoogleServiceAuthError(State s);
95 // Construct a GoogleServiceAuthError from a network error.
97 static GoogleServiceAuthError FromConnectionError(int error)
    [all...]
google_service_auth_error_unittest.cc 21 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::None());
47 GoogleServiceAuthError error(
48 GoogleServiceAuthError::FromConnectionError(net::OK));
56 GoogleServiceAuthError error
    [all...]
gaia_auth_consumer.h 11 class GoogleServiceAuthError;
38 virtual void OnClientLoginFailure(const GoogleServiceAuthError& error) {}
43 const GoogleServiceAuthError& error) {}
48 virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error) {}
  /external/chromium_org/google_apis/gaia/
oauth2_access_token_consumer.h 10 class GoogleServiceAuthError;
25 virtual void OnGetTokenFailure(const GoogleServiceAuthError& error) {}
google_service_auth_error.cc 16 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& b) const
    [all...]
google_service_auth_error_unittest.cc 21 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));
google_service_auth_error.h 5 // 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 {
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 FromConnectionError(int error)
    [all...]
gaia_auth_consumer.h 12 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) {}
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_signin_helper_delegate.h 10 class GoogleServiceAuthError;
26 virtual void OnPassiveSigninFailure(const GoogleServiceAuthError& error) = 0;
34 virtual void OnUserNameFetchFailure(const GoogleServiceAuthError& error) = 0;
  /external/chromium_org/chrome/browser/net/gaia/
gaia_oauth_consumer.h 10 class GoogleServiceAuthError;
19 virtual void OnGetOAuthTokenFailure(const GoogleServiceAuthError& error) {}
24 const GoogleServiceAuthError& error) {}
30 const GoogleServiceAuthError& error) {}
33 virtual void OnUserInfoFailure(const GoogleServiceAuthError& error) {}
38 virtual void OnOAuthLoginFailure(const GoogleServiceAuthError& error) {}
41 virtual void OnOAuthRevokeTokenFailure(const GoogleServiceAuthError& error) {}
  /external/chromium_org/chrome/browser/managed_mode/
managed_user_refresh_token_fetcher.h 15 class GoogleServiceAuthError;
34 typedef base::Callback<void(const GoogleServiceAuthError& /* error */,
  /external/chromium_org/chrome/browser/policy/cloud/
user_info_fetcher.cc 56 GoogleServiceAuthError error = GoogleServiceAuthError::AuthErrorNone();
59 error = GoogleServiceAuthError(GoogleServiceAuthError::REQUEST_CANCELED);
61 error = GoogleServiceAuthError::FromConnectionError(status.error());
65 error = GoogleServiceAuthError(
66 GoogleServiceAuthError::CONNECTION_FAILED);
68 if (error.state() != GoogleServiceAuthError::NONE) {
84 delegate_->OnGetUserInfoFailure(GoogleServiceAuthError(
85 GoogleServiceAuthError::CONNECTION_FAILED))
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/enrollment/
enrollment_screen_actor.h 14 class GoogleServiceAuthError;
22 // are not covered by GoogleServiceAuthError or EnrollmentStatus.
39 virtual void OnAuthError(const GoogleServiceAuthError& error) = 0;
80 virtual void ShowAuthError(const GoogleServiceAuthError& error) = 0;
  /external/chromium/chrome/browser/chromeos/login/
login_status_consumer.h 34 error_(GoogleServiceAuthError::NONE) {
49 const GoogleServiceAuthError& error) {
72 if (error_.state() == GoogleServiceAuthError::CONNECTION_FAILED) {
82 const GoogleServiceAuthError& error() const { return error_; }
86 LoginFailure(FailureReason reason, GoogleServiceAuthError error)
92 GoogleServiceAuthError error_;
  /external/chromium_org/chrome/browser/chromeos/login/
login_status_consumer.h 42 error_(GoogleServiceAuthError::NONE) {
57 const GoogleServiceAuthError& error) {
80 if (error_.state() == GoogleServiceAuthError::CONNECTION_FAILED) {
94 const GoogleServiceAuthError& error() const { return error_; }
98 LoginFailure(FailureReason reason, GoogleServiceAuthError error)
104 GoogleServiceAuthError error_;
  /external/chromium_org/chrome/browser/extensions/api/identity/
gaia_web_auth_flow_unittest.cc 33 GoogleServiceAuthError::State ubertoken_error_state)
42 if (ubertoken_error_.state() == GoogleServiceAuthError::NONE)
53 GoogleServiceAuthError ubertoken_error_;
60 GoogleServiceAuthError service_error,
70 : ubertoken_error_state_(GoogleServiceAuthError::NONE),
90 GoogleServiceAuthError GetNoneServiceError() {
91 return GoogleServiceAuthError(GoogleServiceAuthError::NONE);
95 GoogleServiceAuthError::State ubertoken_error_state) {
101 GoogleServiceAuthError::State ubertoken_error_state_
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
policy_oauth2_token_fetcher.cc 79 const GoogleServiceAuthError& error) {
92 GoogleServiceAuthError(GoogleServiceAuthError::NONE));
96 const GoogleServiceAuthError& error) {
103 void PolicyOAuth2TokenFetcher::RetryOnError(const GoogleServiceAuthError& error,
106 if ((error.state() == GoogleServiceAuthError::CONNECTION_FAILED ||
107 error.state() == GoogleServiceAuthError::SERVICE_UNAVAILABLE ||
108 error.state() == GoogleServiceAuthError::REQUEST_CANCELED) &&
127 const GoogleServiceAuthError& error) {

Completed in 2005 milliseconds

1 2 3 4 5 6 7 8 9