Index: net/http/http_cache_transaction.cc |
diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc |
index 4a0d82d1bec85457fe1ee999c30787b53d0d5ab8..0b0700c123f21dcdad7540f8746383ed86c7072d 100644 |
--- a/net/http/http_cache_transaction.cc |
+++ b/net/http/http_cache_transaction.cc |
@@ -2407,9 +2407,9 @@ bool HttpCache::Transaction::ConditionalizeRequest() { |
if (!use_if_range) { |
// stale-while-revalidate is not useful when we only have a partial response |
// cached, so don't set the header in that case. |
- HttpResponseHeaders::FreshnessLifetimes lifetime = |
+ HttpResponseHeaders::FreshnessLifetimes lifetimes = |
response_.headers->GetFreshnessLifetimes(response_.response_time); |
- if (lifetime.stale > TimeDelta()) { |
+ if (lifetimes.staleness > TimeDelta()) { |
TimeDelta current_age = response_.headers->GetCurrentAge( |
response_.request_time, response_.response_time, Time::Now()); |
@@ -2417,8 +2417,8 @@ bool HttpCache::Transaction::ConditionalizeRequest() { |
kFreshnessHeader, |
base::StringPrintf("max-age=%" PRId64 |
",stale-while-revalidate=%" PRId64 ",age=%" PRId64, |
- lifetime.fresh.InSeconds(), |
- lifetime.stale.InSeconds(), |
+ lifetimes.freshness.InSeconds(), |
+ lifetimes.staleness.InSeconds(), |
current_age.InSeconds())); |
} |
} |