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

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
AndroidProfileOAuth2TokenServiceHelper.java 18 * Temporary wrapper class until all callers have moved to use {@link OAuth2TokenService}.
26 * Use {@link OAuth2TokenService#getOAuth2AccessToken} instead.
31 OAuth2TokenService.getOAuth2AccessToken(context, activity, account, scope, callback);
35 * Use {@link OAuth2TokenService#invalidateOAuth2AuthToken} instead.
39 OAuth2TokenService.invalidateOAuth2AuthToken(context, accessToken);
43 * Use {@link OAuth2TokenService#getOAuth2AccessTokenWithTimeout} instead.
49 return OAuth2TokenService.getOAuth2AccessTokenWithTimeout(
OAuth2TokenService.java 32 * Java instance for the native OAuth2TokenService.
38 public final class OAuth2TokenService {
40 private static final String TAG = "OAuth2TokenService";
60 private OAuth2TokenService(long nativeOAuth2Service) {
65 public static OAuth2TokenService getForProfile(Profile profile) {
67 return (OAuth2TokenService) nativeGetForProfile(profile);
71 private static OAuth2TokenService create(long nativeOAuth2Service) {
73 return new OAuth2TokenService(nativeOAuth2Service);
245 * OAuth2TokenService that a refresh token is now available. This may cause observers to retry
265 * OAuth2TokenService that a refresh token is now revoked
    [all...]
  /external/chromium_org/google_apis/gaia/
oauth2_token_service.h 54 class OAuth2TokenService : public base::NonThreadSafe {
100 // Called after all refresh tokens are loaded during OAuth2TokenService
129 OAuth2TokenService();
130 virtual ~OAuth2TokenService();
205 // Implements a cancelable |OAuth2TokenService::Request|, which should be
384 DISALLOW_COPY_AND_ASSIGN(OAuth2TokenService);
oauth2_token_service.cc 21 int OAuth2TokenService::max_fetch_retry_num_ = 5;
23 OAuth2TokenService::RequestParameters::RequestParameters(
32 OAuth2TokenService::RequestParameters::~RequestParameters() {
35 bool OAuth2TokenService::RequestParameters::operator<(
50 OAuth2TokenService::RequestImpl::RequestImpl(
52 OAuth2TokenService::Consumer* consumer)
57 OAuth2TokenService::RequestImpl::~RequestImpl() {
61 std::string OAuth2TokenService::RequestImpl::GetAccountId() const {
65 std::string OAuth2TokenService::RequestImpl::GetConsumerId() const {
69 void OAuth2TokenService::RequestImpl::InformConsumer
    [all...]

Completed in 80 milliseconds