Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(697)

Unified Diff: content/common/child_histogram_message_filter.cc

Issue 12207058: Connect SparseHistogram with the rest of stats system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix and add tests Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/child_histogram_message_filter.cc
diff --git a/content/common/child_histogram_message_filter.cc b/content/common/child_histogram_message_filter.cc
index 3b410ccd574ede9d2830f5d4b36e5ee99d428e8a..9609112bbddea883344652987a8469b81378d933 100644
--- a/content/common/child_histogram_message_filter.cc
+++ b/content/common/child_histogram_message_filter.cc
@@ -87,15 +87,15 @@ void ChildHistogramMessageFilter::RecordDelta(
}
void ChildHistogramMessageFilter::InconsistencyDetected(
- base::Histogram::Inconsistencies problem) {
+ base::HistogramInconsistency problem) {
UMA_HISTOGRAM_ENUMERATION("Histogram.InconsistenciesChildProcess",
- problem, base::Histogram::NEVER_EXCEEDED_VALUE);
+ problem, base::NEVER_EXCEEDED_VALUE);
}
void ChildHistogramMessageFilter::UniqueInconsistencyDetected(
- base::Histogram::Inconsistencies problem) {
+ base::HistogramInconsistency problem) {
UMA_HISTOGRAM_ENUMERATION("Histogram.InconsistenciesChildProcessUnique",
- problem, base::Histogram::NEVER_EXCEEDED_VALUE);
+ problem, base::NEVER_EXCEEDED_VALUE);
}
void ChildHistogramMessageFilter::InconsistencyDetectedInLoggedCount(

Powered by Google App Engine
This is Rietveld 408576698