Index: base/metrics/histogram.cc |
diff --git a/base/metrics/histogram.cc b/base/metrics/histogram.cc |
index 729e3b9e2a414457fffd46e84b6d53e428561749..d87640fa6dfd6b026e7cc7df3545fa255043dc43 100644 |
--- a/base/metrics/histogram.cc |
+++ b/base/metrics/histogram.cc |
@@ -571,6 +571,18 @@ Histogram::Inconsistencies Histogram::FindCorruption( |
return static_cast<Inconsistencies>(inconsistencies); |
} |
+Histogram::ClassType Histogram::histogram_type() const { |
+ return HISTOGRAM; |
+} |
+ |
+Histogram::Sample Histogram::ranges(size_t i) const { |
+ return ranges_[i]; |
+} |
+ |
+size_t Histogram::bucket_count() const { |
+ return bucket_count_; |
+} |
+ |
//------------------------------------------------------------------------------ |
// Methods for the Histogram::SampleSet class |
//------------------------------------------------------------------------------ |