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

Unified Diff: base/metrics/histogram_flattener.h

Issue 12207058: Connect SparseHistogram with the rest of stats system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments and fix mac compiling 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: base/metrics/histogram_flattener.h
diff --git a/base/metrics/histogram_flattener.h b/base/metrics/histogram_flattener.h
index 137ce980a6844879fc41713d0add2f7f2cc9e090..e97766421f296c105de0320bb6a662f4e1497c31 100644
--- a/base/metrics/histogram_flattener.h
+++ b/base/metrics/histogram_flattener.h
@@ -24,14 +24,14 @@ class BASE_EXPORT HistogramFlattener {
virtual void RecordDelta(const HistogramBase& histogram,
const HistogramSamples& snapshot) = 0;
- // Will be called each time a type of Inconsistenies is seen on a histogram,
- // during inspections done internally in HistogramSnapshotManager class.
- virtual void InconsistencyDetected(Histogram::Inconsistencies problem) = 0;
-
- // Will be called when a type of Inconsistenies is seen for the first time
- // on a histogram.
- virtual void UniqueInconsistencyDetected(
- Histogram::Inconsistencies problem) = 0;
+ // Will be called each time a type of HistogramInconsistency is seen on a
+ // histogram, during inspections done internally in HistogramSnapshotManager
+ // class.
+ virtual void InconsistencyDetected(HistogramInconsistency problem) = 0;
+
+ // Will be called when a type of HistogramInconsistency is seen for the first
+ // time on a histogram.
+ virtual void UniqueInconsistencyDetected(HistogramInconsistency problem) = 0;
// Will be called when the total logged sample count of a histogram
// differs from the sum of logged sample count in all the buckets. The

Powered by Google App Engine
This is Rietveld 408576698