diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-27 23:10:29 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-27 23:10:29 +0000 |
commit | c0abb0a436ee6a3e57b75b9af258e36e7f0fb7e6 (patch) | |
tree | 5c2323f961188351b2b526c154834cecfdacc598 /chrome/browser/net/url_info.cc | |
parent | e31d96b7078580b3fe061e3afd62430e006a0bee (diff) | |
download | chromium_src-c0abb0a436ee6a3e57b75b9af258e36e7f0fb7e6.zip chromium_src-c0abb0a436ee6a3e57b75b9af258e36e7f0fb7e6.tar.gz chromium_src-c0abb0a436ee6a3e57b75b9af258e36e7f0fb7e6.tar.bz2 |
Minor typos and style fixes.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185068 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/net/url_info.cc')
-rw-r--r-- | chrome/browser/net/url_info.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/net/url_info.cc b/chrome/browser/net/url_info.cc index ddba658..3ac9973 100644 --- a/chrome/browser/net/url_info.cc +++ b/chrome/browser/net/url_info.cc @@ -6,7 +6,6 @@ #include <ctype.h> #include <math.h> - #include <algorithm> #include <string> @@ -137,6 +136,7 @@ void UrlInfo::RemoveFromQueue() { queue_duration_ - kBoundary); return; } + // Make a custom linear histogram for the region from 0 to boundary. static const size_t kBucketCount = 52; static base::HistogramBase* histogram(NULL); @@ -161,6 +161,7 @@ void UrlInfo::SetFoundState() { UMA_HISTOGRAM_CUSTOM_TIMES("DNS.PrefetchResolution", resolve_duration_, max_duration, TimeDelta::FromMinutes(15), 100); } + sequence_number_ = sequence_counter++; DLogResultsStats("DNS PrefetchFound"); } |