HomeSort by relevance Sort by last modified time
    Searched refs:refresh_token (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/signin/
profile_oauth2_token_service.cc 57 const std::string& refresh_token,
64 fetcher_->StartRevokeOAuth2Token(refresh_token);
79 const std::string& refresh_token)
82 refresh_token_(refresh_token),
143 return iter->second->refresh_token();
195 const std::string& refresh_token) {
198 DCHECK(!refresh_token.empty());
202 refresh_tokens_[account_id]->refresh_token() != refresh_token) {
206 RevokeCredentialsOnServer(refresh_tokens_[account_id]->refresh_token());
247 refresh_token); local
    [all...]
profile_oauth2_token_service.h 60 // Updates a |refresh_token| for an |account_id|. Credentials are persisted,
63 const std::string& refresh_token);
86 const std::string& refresh_token);
89 const std::string& refresh_token() const { return refresh_token_; } function in class:ProfileOAuth2TokenService::AccountInfo
131 const std::string& refresh_token);
148 virtual void RevokeCredentialsOnServer(const std::string& refresh_token);
153 // In memory refresh token store mapping account_id to refresh_token.
mutable_profile_oauth2_token_service.cc 107 std::string refresh_token = iter->second; local
109 if (IsLegacyRefreshTokenId(prefixed_account_id) && !refresh_token.empty())
110 old_login_token = refresh_token;
118 DCHECK(!refresh_token.empty());
121 new AccountInfo(this, account_id, refresh_token));
fake_profile_oauth2_token_service.h 72 const std::string& refresh_token) OVERRIDE;
125 const std::string& refresh_token) OVERRIDE;
fake_profile_oauth2_token_service.cc 37 const std::string& refresh_token) {
38 IssueRefreshTokenForUser(account_id, refresh_token);
117 const std::string& refresh_token) {
  /external/chromium_org/remoting/host/setup/
oauth_client.cc 38 const std::string& refresh_token,
41 refresh_token_ = refresh_token;
54 const std::string& refresh_token) {
57 on_done.Run(user_email, refresh_token);
oauth_client.h 22 // and |refresh_token| that correspond to the given |auth_code|, or with empty
26 const std::string& refresh_token)> CompletionCallback;
33 // Redeems |auth_code| using |oauth_client_info| to obtain |refresh_token| and
35 // Calls CompletionCallback with |user_email| and |refresh_token| when done,
45 virtual void OnGetTokensResponse(const std::string& refresh_token,
67 const std::string& refresh_token);
  /external/chromium/chrome/common/net/gaia/
gaia_oauth_client.h 36 virtual void OnGetTokensResponse(const std::string& refresh_token,
62 const std::string& refresh_token,
gaia_oauth_client.cc 18 const char kRefreshTokenValue[] = "refresh_token";
42 const std::string& refresh_token,
89 const std::string& refresh_token,
93 "refresh_token=" + EscapeUrlEncodedData(refresh_token) +
97 "&grant_type=refresh_token";
154 std::string refresh_token; local
164 response_dict->GetString(kRefreshTokenValue, &refresh_token);
178 } else if (refresh_token.empty()) {
182 delegate_->OnGetTokensResponse(refresh_token,
    [all...]
  /external/chromium_org/google_apis/gaia/
gaia_auth_consumer.cc 40 : refresh_token(new_refresh_token),
48 return refresh_token == b.refresh_token &&
gaia_oauth_client.h 40 virtual void OnGetTokensResponse(const std::string& refresh_token,
86 const std::string& refresh_token,
gaia_oauth_client.cc 23 const char kRefreshTokenValue[] = "refresh_token";
49 const std::string& refresh_token,
72 REFRESH_TOKEN,
119 const std::string& refresh_token,
124 request_type_ = REFRESH_TOKEN;
126 "refresh_token=" + net::EscapeUrlEncodedData(refresh_token, true) +
131 "&grant_type=refresh_token";
301 case REFRESH_TOKEN: {
303 std::string refresh_token; local
    [all...]
oauth2_access_token_fetcher.h 61 const std::string& refresh_token,
91 const std::string& refresh_token,
  /external/chromium_org/chrome/browser/extensions/api/push_messaging/
sync_setup_helper.h 37 const std::string& refresh_token() const { return refresh_token_; } function in class:extensions::SyncSetupHelper
push_messaging_canary_test.cc 157 const std::string& refresh_token = sync_setup_helper()->refresh_token(); local
161 client_id.c_str(), client_secret.c_str(), refresh_token.c_str()));
obfuscated_gaia_id_fetcher.h 45 const std::string& refresh_token);
  /external/chromium_org/chrome/browser/sync/
fake_oauth2_token_service.h 29 const std::string& refresh_token) OVERRIDE;
fake_oauth2_token_service.cc 38 const std::string& refresh_token) {
  /external/chromium_org/google_apis/drive/
dummy_auth_service.h 24 const std::string& refresh_token() const { return refresh_token_; } function in class:google_apis::DummyAuthService
  /external/chromium_org/cloud_print/gcp20/prototype/
printer_state.cc 19 const char kRefreshToken[] = "refresh_token";
50 json.SetString(kRefreshToken, state.refresh_token);
116 std::string refresh_token; local
117 if (!json->GetString(kRefreshToken, &refresh_token)) {
118 LOG(ERROR) << "Cannot parse |refresh_token|.";
166 state->refresh_token = refresh_token;
printer_state.h 50 std::string refresh_token; member in struct:PrinterState
cloud_print_requester.h 46 const std::string& refresh_token,
118 void UpdateAccesstoken(const std::string& refresh_token);
144 virtual void OnGetTokensResponse(const std::string& refresh_token,
  /external/chromium_org/chrome/browser/chromeos/app_mode/
startup_app_launcher.h 72 std::string refresh_token; member in struct:chromeos::StartupAppLauncher::KioskOAuthParams
  /external/chromium_org/chrome/browser/chromeos/policy/
policy_oauth2_token_fetcher.h 60 return !oauth2_tokens_.refresh_token.empty();
  /external/chromium_org/chrome/browser/chromeos/settings/
device_oauth2_token_service.h 49 bool SetAndSaveRefreshToken(const std::string& refresh_token);

Completed in 295 milliseconds

1 2 3