| Index: base/metrics/histogram_samples.cc
|
| diff --git a/base/metrics/histogram_samples.cc b/base/metrics/histogram_samples.cc
|
| index 26c2aeb087c3f2d91a9921aadfdf0c64e5c69dfe..f5e03b979e110cbf297e27ab278225965141a1eb 100644
|
| --- a/base/metrics/histogram_samples.cc
|
| +++ b/base/metrics/histogram_samples.cc
|
| @@ -15,11 +15,12 @@ class SampleCountPickleIterator : public SampleCountIterator {
|
| public:
|
| explicit SampleCountPickleIterator(PickleIterator* iter);
|
|
|
| - virtual bool Done() const override;
|
| - virtual void Next() override;
|
| - virtual void Get(HistogramBase::Sample* min,
|
| - HistogramBase::Sample* max,
|
| - HistogramBase::Count* count) const override;
|
| + bool Done() const override;
|
| + void Next() override;
|
| + void Get(HistogramBase::Sample* min,
|
| + HistogramBase::Sample* max,
|
| + HistogramBase::Count* count) const override;
|
| +
|
| private:
|
| PickleIterator* const iter_;
|
|
|
|
|