diff options
Diffstat (limited to 'net/disk_cache/stats.cc')
-rw-r--r-- | net/disk_cache/stats.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/disk_cache/stats.cc b/net/disk_cache/stats.cc index a351a6c..e69ea00 100644 --- a/net/disk_cache/stats.cc +++ b/net/disk_cache/stats.cc @@ -138,7 +138,8 @@ bool Stats::Init(BackendImpl* backend, uint32* storage_addr) { backend->ShouldReportAgain()) { // Stats may be reused when the cache is re-created, but we want only one // histogram at any given time. - size_histogram_.reset(new StatsHistogram("DiskCache.SizeStats")); + size_histogram_ = + StatsHistogram::StatsHistogramFactoryGet("DiskCache.SizeStats"); size_histogram_->Init(this); } } |