| Index: base/metrics/histogram_base.cc
|
| diff --git a/base/metrics/histogram_base.cc b/base/metrics/histogram_base.cc
|
| index 403303a9cbecedb2708ffcee36fb2e64e3fd2cfb..3c62396a36607fa6a0d874fc1ede451c63c9b0d2 100644
|
| --- a/base/metrics/histogram_base.cc
|
| +++ b/base/metrics/histogram_base.cc
|
| @@ -100,6 +100,11 @@ bool HistogramBase::SerializeInfo(Pickle* pickle) const {
|
| return SerializeInfoImpl(pickle);
|
| }
|
|
|
| +int32 HistogramBase::FindCorruption(const HistogramSamples& samples) const {
|
| + // Not supported by default.
|
| + return NO_INCONSISTENCIES;
|
| +}
|
| +
|
| void HistogramBase::WriteJSON(std::string* output) const {
|
| Count count;
|
| scoped_ptr<ListValue> buckets(new ListValue());
|
|
|