diff options
Diffstat (limited to 'chrome/browser/net/url_info.cc')
-rw-r--r-- | chrome/browser/net/url_info.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/net/url_info.cc b/chrome/browser/net/url_info.cc index 3ac9973..ddba658 100644 --- a/chrome/browser/net/url_info.cc +++ b/chrome/browser/net/url_info.cc @@ -6,6 +6,7 @@ #include <ctype.h> #include <math.h> + #include <algorithm> #include <string> @@ -136,7 +137,6 @@ 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,7 +161,6 @@ void UrlInfo::SetFoundState() { UMA_HISTOGRAM_CUSTOM_TIMES("DNS.PrefetchResolution", resolve_duration_, max_duration, TimeDelta::FromMinutes(15), 100); } - sequence_number_ = sequence_counter++; DLogResultsStats("DNS PrefetchFound"); } |