diff options
Diffstat (limited to 'net/disk_cache/stats_histogram.cc')
| -rw-r--r-- | net/disk_cache/stats_histogram.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/disk_cache/stats_histogram.cc b/net/disk_cache/stats_histogram.cc index 6d3097a..bea5fd9 100644 --- a/net/disk_cache/stats_histogram.cc +++ b/net/disk_cache/stats_histogram.cc @@ -4,6 +4,7 @@ #include "net/disk_cache/stats_histogram.h" +#include "base/debug/leak_annotations.h" #include "base/logging.h" #include "net/disk_cache/stats.h" @@ -21,8 +22,7 @@ StatsHistogram::~StatsHistogram() { stats_ = NULL; } -StatsHistogram* StatsHistogram::StatsHistogramFactoryGet( - const std::string& name) { +StatsHistogram* StatsHistogram::FactoryGet(const std::string& name) { Histogram* histogram(NULL); Sample minimum = 1; @@ -38,6 +38,8 @@ StatsHistogram* StatsHistogram::StatsHistogramFactoryGet( stats_histogram->InitializeBucketRange(); stats_histogram->SetFlags(kUmaTargetedHistogramFlag); histogram = StatisticsRecorder::RegisterOrDeleteDuplicate(stats_histogram); + if (histogram == stats_histogram) + ANNOTATE_LEAKING_OBJECT_PTR(return_histogram); // see crbug.com/79322 } DCHECK(HISTOGRAM == histogram->histogram_type()); |
