| Index: base/metrics/histogram.cc
|
| diff --git a/base/metrics/histogram.cc b/base/metrics/histogram.cc
|
| index e1d0df6736fa326b5f74c717974f40bf711be0c9..a0d492f3e5732a982f6d4e2e2fd83927d8e9f425 100644
|
| --- a/base/metrics/histogram.cc
|
| +++ b/base/metrics/histogram.cc
|
| @@ -216,7 +216,7 @@ HistogramBase* Histogram::Factory::Build() {
|
| ReportHistogramActivity(*histogram, HISTOGRAM_LOOKUP);
|
| }
|
|
|
| - CHECK_EQ(histogram_type_, histogram->GetHistogramType()) << name_;
|
| + CHECK_EQ(histogram_type_, histogram->GetHistogramType());
|
| if (bucket_count_ != 0 &&
|
| !histogram->HasConstructionArguments(minimum_, maximum_, bucket_count_)) {
|
| // The construction arguments do not match the existing histogram. This can
|
|
|