diff options
author | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 18:06:03 +0000 |
---|---|---|
committer | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 18:06:03 +0000 |
commit | 87a1a958cd1a99a57bb28d242e244411a5f39cfa (patch) | |
tree | 04e97186d459fd2430adc8a7b3cd1e7cf5120f66 /net/http/http_cache.cc | |
parent | 5cbb127e6b67a646b98a460faf89740f29b91403 (diff) | |
download | chromium_src-87a1a958cd1a99a57bb28d242e244411a5f39cfa.zip chromium_src-87a1a958cd1a99a57bb28d242e244411a5f39cfa.tar.gz chromium_src-87a1a958cd1a99a57bb28d242e244411a5f39cfa.tar.bz2 |
Correct latency histograms for SDCH encoding
Add a boolean to indicate if the request_time_ was
set via a call to Now(), vs unpickling from the
cache, so that cached results can be excluded from
latency measurements.
bug=1561947
r=darin,rvargas
Review URL: http://codereview.chromium.org/17371
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7942 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_cache.cc')
-rw-r--r-- | net/http/http_cache.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http/http_cache.cc b/net/http/http_cache.cc index 2ac62ef..7edc0a8 100644 --- a/net/http/http_cache.cc +++ b/net/http/http_cache.cc @@ -1022,6 +1022,7 @@ bool HttpCache::ReadResponseInfo(disk_cache::Entry* disk_entry, if (!pickle.ReadInt64(&iter, &time_val)) return false; response_info->request_time = Time::FromInternalValue(time_val); + response_info->was_cached = true; // Set status to show cache resurrection. // read response-time if (!pickle.ReadInt64(&iter, &time_val)) |