| Index: base/metrics/sparse_histogram.cc
|
| diff --git a/base/metrics/sparse_histogram.cc b/base/metrics/sparse_histogram.cc
|
| index a2dbb61b218b9b42b90543547c344fb42d26b5cc..121d5f02edda28854aa3fe58af27a74612ed8e40 100644
|
| --- a/base/metrics/sparse_histogram.cc
|
| +++ b/base/metrics/sparse_histogram.cc
|
| @@ -93,9 +93,9 @@ HistogramType SparseHistogram::GetHistogramType() const {
|
| }
|
|
|
| bool SparseHistogram::HasConstructionArguments(
|
| - Sample expected_minimum,
|
| - Sample expected_maximum,
|
| - uint32_t expected_bucket_count) const {
|
| + Sample /* expected_minimum */,
|
| + Sample /* expected_maximum */,
|
| + uint32_t /* expected_bucket_count */) const {
|
| // SparseHistogram never has min/max/bucket_count limit.
|
| return false;
|
| }
|
| @@ -214,13 +214,13 @@ HistogramBase* SparseHistogram::DeserializeInfoImpl(PickleIterator* iter) {
|
| return SparseHistogram::FactoryGet(histogram_name, flags);
|
| }
|
|
|
| -void SparseHistogram::GetParameters(DictionaryValue* params) const {
|
| +void SparseHistogram::GetParameters(DictionaryValue* /* params */) const {
|
| // TODO(kaiwang): Implement. (See HistogramBase::WriteJSON.)
|
| }
|
|
|
| -void SparseHistogram::GetCountAndBucketData(Count* count,
|
| - int64_t* sum,
|
| - ListValue* buckets) const {
|
| +void SparseHistogram::GetCountAndBucketData(Count* /* count */,
|
| + int64_t* /* sum */,
|
| + ListValue* /* buckets */) const {
|
| // TODO(kaiwang): Implement. (See HistogramBase::WriteJSON.)
|
| }
|
|
|
|
|