summaryrefslogtreecommitdiff
path: root/chromium/base/metrics/histogram_flattener.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-11-20 10:33:36 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-11-22 11:45:12 +0000
commitbe59a35641616a4cf23c4a13fa0632624b021c1b (patch)
tree9da183258bdf9cc413f7562079d25ace6955467f /chromium/base/metrics/histogram_flattener.h
parentd702e4b6a64574e97fc7df8fe3238cde70242080 (diff)
downloadqtwebengine-chromium-be59a35641616a4cf23c4a13fa0632624b021c1b.tar.gz
BASELINE: Update Chromium to 62.0.3202.101
Change-Id: I2d5eca8117600df6d331f6166ab24d943d9814ac Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/base/metrics/histogram_flattener.h')
-rw-r--r--chromium/base/metrics/histogram_flattener.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/chromium/base/metrics/histogram_flattener.h b/chromium/base/metrics/histogram_flattener.h
index b5fe9766566..22d9a92d32b 100644
--- a/chromium/base/metrics/histogram_flattener.h
+++ b/chromium/base/metrics/histogram_flattener.h
@@ -17,27 +17,11 @@ class HistogramSamples;
// HistogramFlattener is an interface used by HistogramSnapshotManager, which
// handles the logistics of gathering up available histograms for recording.
-// The implementors handle the exact lower level recording mechanism, or
-// error report mechanism.
class BASE_EXPORT HistogramFlattener {
public:
virtual void RecordDelta(const HistogramBase& histogram,
const HistogramSamples& snapshot) = 0;
- // Will be called each time a type of Inconsistency is seen on a histogram,
- // during inspections done internally in HistogramSnapshotManager class.
- virtual void InconsistencyDetected(HistogramBase::Inconsistency problem) = 0;
-
- // Will be called when a type of Inconsistency is seen for the first time on
- // a histogram.
- virtual void UniqueInconsistencyDetected(
- 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
- // argument |amount| is the non-zero discrepancy.
- virtual void InconsistencyDetectedInLoggedCount(int amount) = 0;
-
protected:
HistogramFlattener() {}
virtual ~HistogramFlattener() {}