Home | History | Annotate | Download | only in src

Lines Matching refs:expires_in

406   int expires_in = 0;
408 !json->GetInteger("expires_in", &expires_in) || access_token_.empty() ||
409 expires_in <= 0) {
416 base::Time::Now() + base::TimeDelta::FromSeconds(expires_in);
417 LOG(INFO) << "Access token is refreshed for additional " << expires_in
619 int expires_in = 0;
623 !json_resp->GetInteger("expires_in", &expires_in) ||
624 access_token_.empty() || refresh_token.empty() || expires_in <= 0) {
631 base::Time::Now() + base::TimeDelta::FromSeconds(expires_in);