HomeSort by relevance Sort by last modified time
    Searched defs:GoogleServiceAuthError (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
GoogleServiceAuthError.java 10 * This class mirrors the native GoogleServiceAuthError class State enum from:
13 public class GoogleServiceAuthError {
81 GoogleServiceAuthError(int code) {
  /external/chromium_org/google_apis/gaia/
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.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...]

Completed in 181 milliseconds