chromium/media/audio/system_glitch_reporter.cc

// 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.

#include "media/audio/system_glitch_reporter.h"

#include "base/metrics/histogram_functions.h"
#include "base/trace_event/trace_event.h"

namespace media {

namespace {
// Logs once every 10s, assuming 10ms buffers.
constexpr static int kCallbacksPerLogPeriod =;
}  // namespace

SystemGlitchReporter::SystemGlitchReporter(StreamType stream_type)
    :{}

SystemGlitchReporter::~SystemGlitchReporter() = default;

SystemGlitchReporter::Stats SystemGlitchReporter::GetLongTermStatsAndReset() {}

void SystemGlitchReporter::UpdateStats(base::TimeDelta glitch_duration) {}

}  // namespace media