| Index: base/metrics/histogram_base.h
|
| diff --git a/base/metrics/histogram_base.h b/base/metrics/histogram_base.h
|
| index a133fa5c45ae9738afb95f31087987878b8103fc..9faca2c7f59ad8fb60c6ceb8775b712d4e43cd56 100644
|
| --- a/base/metrics/histogram_base.h
|
| +++ b/base/metrics/histogram_base.h
|
| @@ -94,11 +94,11 @@ class BASE_EXPORT HistogramBase {
|
| virtual HistogramType GetHistogramType() const = 0;
|
|
|
| // Whether the histogram has construction arguments as parameters specified.
|
| - // For histograms that don't have the concept of |minimum|, |maximum| or
|
| - // |bucket_count|, this function always returns false.
|
| - virtual bool HasConstructionArguments(Sample minimum,
|
| - Sample maximum,
|
| - size_t bucket_count) const = 0;
|
| + // For histograms that don't have the concept of minimum, maximum or
|
| + // bucket_count, this function always returns false.
|
| + virtual bool HasConstructionArguments(Sample expected_minimum,
|
| + Sample expected_maximum,
|
| + size_t expected_bucket_count) const = 0;
|
|
|
| virtual void Add(Sample value) = 0;
|
|
|
|
|