// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_AUDIO_SYSTEM_GLITCH_REPORTER_H_ #define MEDIA_AUDIO_SYSTEM_GLITCH_REPORTER_H_ #include <string> #include "base/time/time.h" namespace media { // Aggregates and reports glitch statistics. // Stats are aggregated and reported to UMA periodically every 1000th call to // UpdateStats(), and longer-term (manually reset) stats are available via // GetLongTermStatsAndReset(). class SystemGlitchReporter { … }; } // namespace media #endif // MEDIA_AUDIO_SYSTEM_GLITCH_REPORTER_H_