// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/platform/audio/audio_callback_metric_reporter.h" #include "base/check_op.h" #include "third_party/blink/renderer/platform/audio/audio_utilities.h" namespace blink { void AudioCallbackMetricReporter::Initialize( int callback_buffer_size, float sample_rate) { … } void AudioCallbackMetricReporter::BeginTrace() { … } void AudioCallbackMetricReporter::EndTrace() { … } void AudioCallbackMetricReporter::UpdateMetric() { … } } // namespace blink