Lines Matching refs:GoogleServiceAuthError

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 {
67 GoogleServiceAuthError::GoogleServiceAuthError(State s)
76 GoogleServiceAuthError::GoogleServiceAuthError(
85 GoogleServiceAuthError
86 GoogleServiceAuthError::FromConnectionError(int error) {
87 return GoogleServiceAuthError(CONNECTION_FAILED, error);
91 GoogleServiceAuthError GoogleServiceAuthError::FromClientLoginCaptchaChallenge(
95 return GoogleServiceAuthError(CAPTCHA_REQUIRED, captcha_token, GURL(),
100 GoogleServiceAuthError GoogleServiceAuthError::FromServiceError(
102 return GoogleServiceAuthError(SERVICE_ERROR, error_message);
106 GoogleServiceAuthError GoogleServiceAuthError::FromUnexpectedServiceResponse(
108 return GoogleServiceAuthError(UNEXPECTED_SERVICE_RESPONSE, error_message);
112 GoogleServiceAuthError GoogleServiceAuthError::AuthErrorNone() {
113 return GoogleServiceAuthError(NONE);
116 GoogleServiceAuthError::State GoogleServiceAuthError::state() const {
120 const GoogleServiceAuthError::Captcha& GoogleServiceAuthError::captcha() const {
124 const GoogleServiceAuthError::SecondFactor&
125 GoogleServiceAuthError::second_factor() const {
129 int GoogleServiceAuthError::network_error() const {
133 const std::string& GoogleServiceAuthError::token() const {
147 const std::string& GoogleServiceAuthError::error_message() const {
151 base::DictionaryValue* GoogleServiceAuthError::ToValue() const {
200 std::string GoogleServiceAuthError::ToString() const {
238 GoogleServiceAuthError::GoogleServiceAuthError(State s, int error)
243 GoogleServiceAuthError::GoogleServiceAuthError(