HomeSort by relevance Sort by last modified time
    Searched refs:OAuth2TokenService (Results 51 - 75 of 97) sorted by null

1 23 4

  /external/chromium_org/components/policy/core/common/cloud/
cloud_policy_client_registration_helper.h 20 class OAuth2TokenService;
42 // supplied OAuth2TokenService to mint the new token for the userinfo
46 OAuth2TokenService* token_service,
89 // Internal helper class that uses OAuth2TokenService to fetch an OAuth
98 // is done via OAuth2TokenService.
  /external/chromium_org/chrome/browser/extensions/api/identity/
account_tracker.h 24 std::string account_key; // The account ID used by OAuth2TokenService.
40 class AccountTracker : public OAuth2TokenService::Observer,
69 // OAuth2TokenService::Observer implementation.
118 class AccountIdFetcher : public OAuth2TokenService::Consumer,
130 // OAuth2TokenService::Consumer implementation.
131 virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
134 virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request,
147 scoped_ptr<OAuth2TokenService::Request> login_token_request_;
identity_api.h 187 public OAuth2TokenService::Consumer,
209 // OAuth2TokenService::Consumer implementation:
210 virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
213 virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request,
216 scoped_ptr<OAuth2TokenService::Request> login_token_request_;
  /external/chromium_org/chrome/browser/sync/
profile_sync_auth_provider.cc 75 : OAuth2TokenService::Consumer("sync_auth_provider"),
102 const OAuth2TokenService::Request* request,
110 const OAuth2TokenService::Request* request,
  /external/chromium_org/chrome/browser/policy/cloud/
user_policy_signin_service.h 31 public OAuth2TokenService::Observer {
54 // OAuth2TokenService::Observer implementation:
  /external/chromium_org/chrome/browser/signin/
profile_identity_provider.cc 35 OAuth2TokenService* ProfileIdentityProvider::GetTokenService() {
android_profile_oauth2_token_service.cc 26 std::string CombineScopes(const OAuth2TokenService::ScopeSet& scopes) {
30 for (OAuth2TokenService::ScopeSet::const_iterator it = scopes.begin();
133 const OAuth2TokenService::ScopeSet& scopes) {
173 OAuth2TokenService::InvalidateOAuth2Token(account_id,
316 OAuth2TokenService::FireRefreshTokenAvailable(account_id);
339 OAuth2TokenService::FireRefreshTokenRevoked(account_id);
357 OAuth2TokenService::FireRefreshTokensLoaded();
  /external/chromium_org/components/signin/core/browser/
profile_oauth2_token_service.h 27 // See |OAuth2TokenService| for usage details.
37 class ProfileOAuth2TokenService : public OAuth2TokenService,
83 // OAuth2TokenService overrides.
signin_tracker.h 22 // services (SigninManager, OAuth2TokenService) and coalesces them into
44 // OAuth2TokenService - Maintains and manages OAuth2 tokens for the accounts
52 public OAuth2TokenService::Observer,
83 // OAuth2TokenService::Observer implementation.
account_reconcilor.h 38 public OAuth2TokenService::Consumer,
39 public OAuth2TokenService::Observer,
194 // Overriden from OAuth2TokenService::Consumer.
195 virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
198 virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request,
201 // Overriden from OAuth2TokenService::Observer.
243 // These members are used to validate the tokens in OAuth2TokenService.
246 scoped_ptr<OAuth2TokenService::Request>* requests_;
about_signin_internals.cc 208 const OAuth2TokenService::ScopeSet& scopes) {
223 const OAuth2TokenService::ScopeSet& scopes,
241 const OAuth2TokenService::ScopeSet& scopes) {
261 const OAuth2TokenService::ScopeSet& scopes)
282 for (OAuth2TokenService::ScopeSet::const_iterator it = scopes.begin();
332 const OAuth2TokenService::ScopeSet& scopes) {
account_reconcilor.cc 125 static OAuth2TokenService::ScopeSet GetScopes();
156 OAuth2TokenService::ScopeSet AccountReconcilor::UserIdFetcher::GetScopes() {
157 OAuth2TokenService::ScopeSet scopes;
194 : OAuth2TokenService::Consumer("account_reconcilor"),
535 new scoped_ptr<OAuth2TokenService::Request>[chrome_accounts_.size()];
536 const OAuth2TokenService::ScopeSet scopes =
548 const OAuth2TokenService::Request* request,
567 const OAuth2TokenService::Request* request,
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
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/chrome/android/javatests/src/org/chromium/chrome/browser/signin/
OAuth2TokenServiceIntegrationTest.java 24 * Integration test for the OAuth2TokenService.
40 private OAuth2TokenService mOAuth2TokenService;
69 * The {@link OAuth2TokenService} and the {@link Profile} can only be accessed from the UI
72 * @return the OAuth2TokenService.
74 private static OAuth2TokenService getOAuth2TokenServiceOnUiThread() {
75 final AtomicReference<OAuth2TokenService> service =
76 new AtomicReference<OAuth2TokenService>();
80 service.set(OAuth2TokenService.getForProfile(Profile.getLastUsedProfile()));
377 assertEquals(1, OAuth2TokenService.getAccounts(mContext).length);
385 private static class TestObserver implements OAuth2TokenService.OAuth2TokenServiceObserver
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/people/
people_provider.cc 47 OAuth2TokenService::Consumer("people_provider"),
100 const OAuth2TokenService::Request* request,
110 const OAuth2TokenService::Request* request,
  /external/chromium_org/components/invalidation/
ticl_invalidation_service.cc 60 : OAuth2TokenService::Consumer("ticl_invalidation"),
189 OAuth2TokenService::ScopeSet oauth2_scopes;
195 OAuth2TokenService* token_service = identity_provider_->GetTokenService();
203 const OAuth2TokenService::Request* request,
219 const OAuth2TokenService::Request* request,
317 OAuth2TokenService* token_service = identity_provider_->GetTokenService();
321 << "OAuth2TokenService unavailable.";
gcm_invalidation_bridge.cc 161 : OAuth2TokenService::Consumer("gcm_network_channel"),
204 OAuth2TokenService::ScopeSet scopes;
211 const OAuth2TokenService::Request* request,
228 const OAuth2TokenService::Request* request,
245 OAuth2TokenService::ScopeSet scopes;
  /external/chromium_org/chrome/browser/chromeos/app_mode/
startup_app_launcher.h 36 public OAuth2TokenService::Observer {
106 // OAuth2TokenService::Observer overrides.
  /external/chromium_org/chrome/browser/chromeos/login/signin/
oauth2_login_verifier.cc 54 : OAuth2TokenService::Consumer("cros_login_verifier"),
103 OAuth2TokenService::ScopeSet scopes;
196 const OAuth2TokenService::Request* request,
209 const OAuth2TokenService::Request* request,
  /external/chromium_org/chrome/browser/local_discovery/
gcd_api_flow.cc 32 OAuth2TokenService* token_service,
gcd_api_flow.h 61 OAuth2TokenService* token_service,
  /external/chromium_org/google_apis/gaia/
fake_oauth2_token_service.h 19 // Do-nothing implementation of OAuth2TokenService.
20 class FakeOAuth2TokenService : public OAuth2TokenService {
40 // OAuth2TokenService overrides.
68 // OAuth2TokenService overrides.
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);
account_tracker.cc 241 OAuth2TokenService* token_service,
245 : OAuth2TokenService::Consumer("gaia_account_tracker"),
256 account_key_, OAuth2TokenService::ScopeSet(), this);
260 const OAuth2TokenService::Request* request,
272 const OAuth2TokenService::Request* request,
  /external/chromium_org/chrome/browser/history/
web_history_service.cc 49 private OAuth2TokenService::Consumer,
72 : OAuth2TokenService::Consumer("web_history"),
83 OAuth2TokenService::ScopeSet oauth_scopes;
107 OAuth2TokenService::ScopeSet oauth_scopes;
130 // OAuth2TokenService::Consumer interface.
132 const OAuth2TokenService::Request* request,
147 const OAuth2TokenService::Request* request,
190 scoped_ptr<OAuth2TokenService::Request> token_request_;

Completed in 677 milliseconds

1 23 4