| Index: net/disk_cache/stats_histogram.cc
|
| diff --git a/net/disk_cache/stats_histogram.cc b/net/disk_cache/stats_histogram.cc
|
| index 14d2d70d93859a522d217f722ed17d29fd45f0c1..6d3097a8e6e3ce2ff88c3fbf2d357f9977c05c9d 100644
|
| --- a/net/disk_cache/stats_histogram.cc
|
| +++ b/net/disk_cache/stats_histogram.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "net/disk_cache/stats_histogram.h"
|
|
|
| -#include "base/debug/leak_annotations.h"
|
| #include "base/logging.h"
|
| #include "net/disk_cache/stats.h"
|
|
|
| @@ -22,7 +21,8 @@ StatsHistogram::~StatsHistogram() {
|
| stats_ = NULL;
|
| }
|
|
|
| -StatsHistogram* StatsHistogram::FactoryGet(const std::string& name) {
|
| +StatsHistogram* StatsHistogram::StatsHistogramFactoryGet(
|
| + const std::string& name) {
|
| Histogram* histogram(NULL);
|
|
|
| Sample minimum = 1;
|
| @@ -49,7 +49,6 @@ StatsHistogram* StatsHistogram::FactoryGet(const std::string& name) {
|
| // Validate upcast by seeing that we're probably providing the checksum.
|
| CHECK_EQ(return_histogram->StatsHistogram::CalculateRangeChecksum(),
|
| return_histogram->CalculateRangeChecksum());
|
| - ANNOTATE_LEAKING_OBJECT_PTR(return_histogram); // see crbug.com/79322
|
| return return_histogram;
|
| }
|
|
|
|
|