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

Unified Diff: base/metrics/histogram.cc

Issue 6592043: Fix compilation bug on ARM... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/metrics/histogram.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/metrics/histogram.cc
===================================================================
--- base/metrics/histogram.cc (revision 76239)
+++ base/metrics/histogram.cc (working copy)
@@ -928,7 +928,7 @@
if (!StatisticsRecorder::FindHistogram(name, &histogram)) {
CustomHistogram* custom_histogram = new CustomHistogram(name, ranges);
- custom_histogram->InitializeBucketRange(ranges);
+ custom_histogram->InitializedCustomBucketRange(ranges);
histogram = custom_histogram;
StatisticsRecorder::Register(&histogram);
}
@@ -952,7 +952,7 @@
DCHECK_EQ(custom_ranges[0], 0);
}
-void CustomHistogram::InitializeBucketRange(
+void CustomHistogram::InitializedCustomBucketRange(
const std::vector<Sample>& custom_ranges) {
DCHECK_GT(custom_ranges.size(), 1u);
DCHECK_EQ(custom_ranges[0], 0);
« no previous file with comments | « base/metrics/histogram.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698