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

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: Rebase 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
« no previous file with comments | « base/metrics/histogram_base_unittest.cc ('k') | base/metrics/histogram_snapshot_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/metrics/histogram_flattener.h
diff --git a/base/metrics/histogram_flattener.h b/base/metrics/histogram_flattener.h
index 137ce980a6844879fc41713d0add2f7f2cc9e090..ca05a4f421f415374f4f37d24b9b43f66cbff052 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,
+ // Will be called each time a type of Inconsistency is seen on a histogram,
// during inspections done internally in HistogramSnapshotManager class.
- virtual void InconsistencyDetected(Histogram::Inconsistencies problem) = 0;
+ virtual void InconsistencyDetected(HistogramBase::Inconsistency problem) = 0;
- // Will be called when a type of Inconsistenies is seen for the first time
- // on a histogram.
+ // Will be called when a type of Inconsistency is seen for the first time on
+ // a histogram.
virtual void UniqueInconsistencyDetected(
- Histogram::Inconsistencies problem) = 0;
+ HistogramBase::Inconsistency 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
« no previous file with comments | « base/metrics/histogram_base_unittest.cc ('k') | base/metrics/histogram_snapshot_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698