diff options
Diffstat (limited to 'net/disk_cache/stats.cc')
-rw-r--r-- | net/disk_cache/stats.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/disk_cache/stats.cc b/net/disk_cache/stats.cc index 7c49e5c..a6733cb 100644 --- a/net/disk_cache/stats.cc +++ b/net/disk_cache/stats.cc @@ -123,7 +123,7 @@ bool Stats::Init(BackendImpl* backend, uint32* storage_addr) { if (!size_histogram_.get()) { // 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(L"DiskCache.SizeStats")); + size_histogram_.reset(new StatsHistogram("DiskCache.SizeStats")); size_histogram_->Init(this); } @@ -267,4 +267,3 @@ void Stats::GetItems(StatsItems* items) { } } // namespace disk_cache - |