Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: net/disk_cache/stats_histogram.cc

Issue 6976044: Fix http://codereview.chromium.org/6869009 to ignore an existing object exactly once and land the... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/disk_cache/stats_histogram.h ('k') | tools/heapcheck/suppressions.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/disk_cache/stats_histogram.h" 5 #include "net/disk_cache/stats_histogram.h"
6 6
7 #include "base/debug/leak_annotations.h"
7 #include "base/logging.h" 8 #include "base/logging.h"
8 #include "net/disk_cache/stats.h" 9 #include "net/disk_cache/stats.h"
9 10
10 namespace disk_cache { 11 namespace disk_cache {
11 12
12 using base::Histogram; 13 using base::Histogram;
13 using base::StatisticsRecorder; 14 using base::StatisticsRecorder;
14 15
15 // Static. 16 // Static.
16 const Stats* StatsHistogram::stats_ = NULL; 17 const Stats* StatsHistogram::stats_ = NULL;
17 18
18 StatsHistogram::~StatsHistogram() { 19 StatsHistogram::~StatsHistogram() {
19 // Only cleanup what we set. 20 // Only cleanup what we set.
20 if (init_) 21 if (init_)
21 stats_ = NULL; 22 stats_ = NULL;
22 } 23 }
23 24
24 StatsHistogram* StatsHistogram::StatsHistogramFactoryGet( 25 StatsHistogram* StatsHistogram::FactoryGet(const std::string& name) {
25 const std::string& name) {
26 Histogram* histogram(NULL); 26 Histogram* histogram(NULL);
27 27
28 Sample minimum = 1; 28 Sample minimum = 1;
29 Sample maximum = disk_cache::Stats::kDataSizesLength - 1; 29 Sample maximum = disk_cache::Stats::kDataSizesLength - 1;
30 size_t bucket_count = disk_cache::Stats::kDataSizesLength; 30 size_t bucket_count = disk_cache::Stats::kDataSizesLength;
31 31
32 if (StatisticsRecorder::FindHistogram(name, &histogram)) { 32 if (StatisticsRecorder::FindHistogram(name, &histogram)) {
33 DCHECK(histogram != NULL); 33 DCHECK(histogram != NULL);
34 } else { 34 } else {
35 // To avoid racy destruction at shutdown, the following will be leaked. 35 // To avoid racy destruction at shutdown, the following will be leaked.
36 StatsHistogram* stats_histogram = 36 StatsHistogram* stats_histogram =
37 new StatsHistogram(name, minimum, maximum, bucket_count); 37 new StatsHistogram(name, minimum, maximum, bucket_count);
38 stats_histogram->InitializeBucketRange(); 38 stats_histogram->InitializeBucketRange();
39 stats_histogram->SetFlags(kUmaTargetedHistogramFlag); 39 stats_histogram->SetFlags(kUmaTargetedHistogramFlag);
40 histogram = StatisticsRecorder::RegisterOrDeleteDuplicate(stats_histogram); 40 histogram = StatisticsRecorder::RegisterOrDeleteDuplicate(stats_histogram);
41 if (histogram == stats_histogram)
42 ANNOTATE_LEAKING_OBJECT_PTR(return_histogram); // see crbug.com/79322
41 } 43 }
42 44
43 DCHECK(HISTOGRAM == histogram->histogram_type()); 45 DCHECK(HISTOGRAM == histogram->histogram_type());
44 DCHECK(histogram->HasConstructorArguments(minimum, maximum, bucket_count)); 46 DCHECK(histogram->HasConstructorArguments(minimum, maximum, bucket_count));
45 47
46 // We're preparing for an otherwise unsafe upcast by ensuring we have the 48 // We're preparing for an otherwise unsafe upcast by ensuring we have the
47 // proper class type. 49 // proper class type.
48 StatsHistogram* return_histogram = static_cast<StatsHistogram*>(histogram); 50 StatsHistogram* return_histogram = static_cast<StatsHistogram*>(histogram);
49 // Validate upcast by seeing that we're probably providing the checksum. 51 // Validate upcast by seeing that we're probably providing the checksum.
50 CHECK_EQ(return_histogram->StatsHistogram::CalculateRangeChecksum(), 52 CHECK_EQ(return_histogram->StatsHistogram::CalculateRangeChecksum(),
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 return NO_INCONSISTENCIES; // This class won't monitor inconsistencies. 91 return NO_INCONSISTENCIES; // This class won't monitor inconsistencies.
90 } 92 }
91 93
92 uint32 StatsHistogram::CalculateRangeChecksum() const { 94 uint32 StatsHistogram::CalculateRangeChecksum() const {
93 // We don't calculate checksums, so at least establish a unique constant. 95 // We don't calculate checksums, so at least establish a unique constant.
94 const uint32 kStatsHistogramChecksum = 0x0cecce; 96 const uint32 kStatsHistogramChecksum = 0x0cecce;
95 return kStatsHistogramChecksum; 97 return kStatsHistogramChecksum;
96 } 98 }
97 99
98 } // namespace disk_cache 100 } // namespace disk_cache
OLDNEW
« no previous file with comments | « net/disk_cache/stats_histogram.h ('k') | tools/heapcheck/suppressions.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698