summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--base/metrics/histogram.cc1
-rw-r--r--chrome/common/metrics_helpers.cc1
2 files changed, 0 insertions, 2 deletions
diff --git a/base/metrics/histogram.cc b/base/metrics/histogram.cc
index 2003f25..729e3b9 100644
--- a/base/metrics/histogram.cc
+++ b/base/metrics/histogram.cc
@@ -614,7 +614,6 @@ Count Histogram::SampleSet::TotalCount() const {
++it) {
total += *it;
}
- DCHECK_EQ(total, redundant_count_);
return total;
}
diff --git a/chrome/common/metrics_helpers.cc b/chrome/common/metrics_helpers.cc
index d5d8f78..6462383 100644
--- a/chrome/common/metrics_helpers.cc
+++ b/chrome/common/metrics_helpers.cc
@@ -563,7 +563,6 @@ void HistogramSender::TransmitHistogram(const Histogram& histogram) {
}
// Snapshot now contains only a delta to what we've already_logged.
- DCHECK_EQ(snapshot.TotalCount(), snapshot.redundant_count());
if (snapshot.redundant_count() > 0) {
TransmitHistogramDelta(histogram, snapshot);
// Add new data into our running total.