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

  /external/chromium_org/chrome/browser/net/gaia/
gaia_oauth_fetcher_unittest.cc 43 const std::string& expires_in));
169 const std::string expires_in = "3600"; local
179 expires_in)).Times(1);
205 const std::string expires_in = "3600"; local
gaia_oauth_fetcher.cc 218 std::string* expires_in) {
234 expires_in->assign(decoded);
487 std::string expires_in; local
488 ParseOAuthWrapBridgeResponse(data, &token, &expires_in);
489 if (!token.empty() && !expires_in.empty()) {
490 consumer_->OnOAuthWrapBridgeSuccess(service_scope_, token, expires_in);
  /external/chromium_org/google_apis/gaia/
oauth2_access_token_fetcher_unittest.cc 44 " \"expires_in\": 3600,"
49 " \"expires_in\": 3600,"
197 int expires_in; local
199 &url_fetcher, &at, &expires_in));
207 int expires_in; local
209 &url_fetcher, &at, &expires_in));
217 int expires_in; local
219 &url_fetcher, &at, &expires_in));
227 int expires_in; local
229 &url_fetcher, &at, &expires_in));
    [all...]
oauth2_access_token_fetcher.cc 46 static const char kExpiresInKey[] = "expires_in";
150 int expires_in; local
151 if (!ParseGetAccessTokenResponse(source, &access_token, &expires_in)) {
157 // The token will expire in |expires_in| seconds. Take a 10% error margin to
161 base::Time::Now() + base::TimeDelta::FromSeconds(9 * expires_in / 10));
220 int* expires_in) {
232 dict->GetInteger(kExpiresInKey, expires_in);
  /external/chromium_org/ui/message_center/
message_center_tray.cc 193 base::TimeDelta expires_in = command_id == kEnableQuietModeDay ? local
196 message_center()->EnterQuietModeWithExpire(expires_in);

Completed in 73 milliseconds