diff options
Diffstat (limited to 'chrome/browser/net/url_info.cc')
-rw-r--r-- | chrome/browser/net/url_info.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/net/url_info.cc b/chrome/browser/net/url_info.cc index a5ac9b2..ddba658 100644 --- a/chrome/browser/net/url_info.cc +++ b/chrome/browser/net/url_info.cc @@ -139,11 +139,11 @@ void UrlInfo::RemoveFromQueue() { } // Make a custom linear histogram for the region from 0 to boundary. static const size_t kBucketCount = 52; - static base::Histogram* histogram(NULL); + static base::HistogramBase* histogram(NULL); if (!histogram) histogram = base::LinearHistogram::FactoryTimeGet( "DNS.QueueRecycledUnder2", TimeDelta(), kBoundary, kBucketCount, - base::Histogram::kUmaTargetedHistogramFlag); + base::HistogramBase::kUmaTargetedHistogramFlag); histogram->AddTime(queue_duration_); } |