HomeSort by relevance Sort by last modified time
    Searched defs:token_service (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/signin/
signin_tracker.cc 36 OAuth2TokenService* token_service = local
38 token_service->AddObserver(this);
ubertoken_fetcher.cc 29 ProfileOAuth2TokenService* token_service = local
31 StartFetchingToken(token_service->GetPrimaryAccountId());
37 ProfileOAuth2TokenService* token_service = local
39 access_token_request_ = token_service->StartRequest(account_id, scopes, this);
account_reconcilor_unittest.cc 37 FakeProfileOAuth2TokenService* token_service() { return token_service_; } function in class:__anon5607::AccountReconcilorTest
signin_account_id_helper.cc 108 ProfileOAuth2TokenService* token_service = local
110 std::string primary_email = token_service->GetPrimaryAccountId();
112 token_service->RefreshTokenIsAvailable(primary_email) &&
116 token_service->AddObserver(this);
account_reconcilor.cc 85 ProfileOAuth2TokenService* token_service = local
87 token_service->AddObserver(this);
91 ProfileOAuth2TokenService* token_service = local
93 token_service->RemoveObserver(this);
226 ProfileOAuth2TokenService* token_service = local
228 chrome_accounts_ = token_service->GetAccounts();
239 requests_[i] = token_service->StartRequest(chrome_accounts_[i],
signin_manager_unittest.cc 203 ProfileOAuth2TokenService* token_service = local
205 EXPECT_TRUE(token_service->RefreshTokenIsAvailable(
223 ProfileOAuth2TokenService* token_service = local
225 EXPECT_FALSE(token_service->RefreshTokenIsAvailable(
  /external/chromium_org/chrome/browser/chromeos/policy/
user_cloud_policy_token_forwarder_factory.cc 39 ProfileOAuth2TokenService* token_service = local
41 if (!token_service || !manager)
43 return new UserCloudPolicyTokenForwarder(manager, token_service);
user_cloud_policy_manager_chromeos_unittest.cc 180 ProfileOAuth2TokenService* token_service = local
182 ASSERT_TRUE(token_service);
184 new UserCloudPolicyTokenForwarder(manager_.get(), token_service));
247 FakeProfileOAuth2TokenService* token_service = local
250 EXPECT_TRUE(token_service);
255 token_service->IssueTokenForScope(
534 FakeProfileOAuth2TokenService* token_service = local
537 ASSERT_TRUE(token_service);
538 EXPECT_FALSE(token_service->RefreshTokenIsAvailable(kTestAccountId));
539 token_service->IssueRefreshToken(kTestAccountId)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
device_oauth2_token_service_factory_unittest.cc 66 DeviceOAuth2TokenService* token_service = NULL; local
69 base::Bind(&CopyTokenServiceAndCount, &token_service, &counter));
72 EXPECT_FALSE(token_service);
77 EXPECT_FALSE(token_service);
84 DeviceOAuth2TokenService* token_service = NULL; local
87 base::Bind(&CopyTokenServiceAndCount, &token_service, &counter));
90 EXPECT_FALSE(token_service);
95 EXPECT_TRUE(token_service);
98 token_service = NULL;
100 base::Bind(&CopyTokenServiceAndCount, &token_service, &counter))
145 DeviceOAuth2TokenService* token_service = NULL; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
oauth2_login_verifier.cc 97 ProfileOAuth2TokenService* token_service = local
99 login_token_request_ = token_service->StartRequestWithContext(
100 token_service->GetPrimaryAccountId(),
oauth2_login_manager.cc 95 ProfileOAuth2TokenService* token_service = GetTokenService(); local
96 const std::string& primary_account_id = token_service->GetPrimaryAccountId();
97 if (token_service->RefreshTokenIsAvailable(primary_account_id)) {
110 token_service->LoadCredentials();
150 ProfileOAuth2TokenService* token_service = local
152 return token_service;
156 ProfileOAuth2TokenService* token_service = GetTokenService(); local
157 std::string primary_account_id = token_service->GetPrimaryAccountId();
  /external/chromium_org/chrome/browser/ui/app_list/search/people/
people_result.cc 149 ProfileOAuth2TokenService* token_service = local
151 DCHECK(token_service);
152 request.from = token_service->GetPrimaryAccountId();
  /external/chromium/chrome/browser/extensions/
extension_webstore_private_browsertest.cc 12 #include "chrome/browser/net/gaia/token_service.h"
93 TokenService* token_service = profile->GetTokenService(); local
94 token_service->IssueAuthTokenForTest(GaiaConstants::kGaiaService,
139 TokenService* token_service = browser()->profile()->GetTokenService(); local
140 token_service->ResetCredentialsInMemory();
143 token_service->IssueAuthTokenForTest(GaiaConstants::kGaiaService,
  /external/chromium_org/chrome/browser/android/signin/
signin_manager_android.cc 215 AndroidProfileOAuth2TokenService* token_service = local
218 const std::string& primary_acct = token_service->GetPrimaryAccountId();
219 const std::vector<std::string>& ids = token_service->GetAccounts();
220 token_service->ValidateAccounts(primary_acct, ids);
  /external/chromium_org/chrome/browser/managed_mode/
managed_user_registration_utility.cc 135 ProfileOAuth2TokenService* token_service = local
139 token_service,
140 token_service->GetPrimaryAccountId(),
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_startup_unittest.cc 255 ProfileOAuth2TokenService* token_service = local
257 token_service->LoadCredentials();
317 ProfileOAuth2TokenService* token_service = local
323 token_service->LoadCredentials();
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppclientsettings.h 50 void set_token_service(const std::string & token_service) {
51 token_service_ = token_service;
61 const std::string & token_service() const { return token_service_; } function in class:buzz::XmppUserSettings
  /external/chromium_org/chrome/browser/extensions/api/identity/
account_tracker.cc 55 ProfileOAuth2TokenService* token_service = local
57 if (token_service->GetPrimaryAccountId().empty())
  /external/chromium_org/chrome/browser/extensions/api/push_messaging/
push_messaging_api.cc 126 ProfileOAuth2TokenService* token_service = local
128 fetcher_access_token_request_ = token_service->StartRequest(
129 token_service->GetPrimaryAccountId(), scopes, this);
190 ProfileOAuth2TokenService* token_service = local
192 return token_service->RefreshTokenIsAvailable(
193 token_service->GetPrimaryAccountId());
  /external/chromium_org/chrome/browser/history/
web_history_service.cc 82 ProfileOAuth2TokenService* token_service = local
84 token_request_ = token_service->StartRequest(
85 token_service->GetPrimaryAccountId(), oauth_scopes, this);
103 ProfileOAuth2TokenService* token_service = variable
105 token_service->InvalidateToken(token_service->GetPrimaryAccountId(),
  /external/chromium_org/chrome/browser/profiles/
profile_downloader.cc 288 ProfileOAuth2TokenService* token_service = local
290 oauth2_access_token_request_ = token_service->StartRequest(
  /external/chromium_org/chrome/browser/ui/webui/
inline_login_ui.cc 80 ProfileOAuth2TokenService* token_service = variable
82 token_service->UpdateCredentials(token_service->GetPrimaryAccountId(),
  /external/chromium_org/chrome/browser/ui/webui/local_discovery/
local_discovery_ui_browsertest.cc 395 ProfileOAuth2TokenService* token_service = variable
398 token_service->UpdateCredentials("user@host.com", "MyFakeToken");
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppclientsettings.h 58 void set_token_service(const std::string& token_service) {
59 token_service_ = token_service;
71 const std::string& token_service() const { return token_service_; } function in class:buzz::XmppUserSettings
  /external/chromium_org/components/test/data/web_database/
version_25.sql 15 CREATE TABLE token_service (service VARCHAR PRIMARY KEY NOT NULL,encrypted_token BLOB); table

Completed in 349 milliseconds

1 2 3