#include "services/audio/output_tapper.h"
#include "base/logging.h"
#include "base/metrics/histogram_functions.h"
#include "base/strings/strcat.h"
#include "base/time/time.h"
#include "base/trace_event/trace_event.h"
#include "media/audio/audio_device_description.h"
#include "media/base/audio_bus.h"
#include "services/audio/device_output_listener.h"
namespace audio {
OutputTapper::OutputTapper(DeviceOutputListener* device_output_listener,
ReferenceOutput::Listener* listener,
LogCallback log_callback)
: … { … }
OutputTapper::~OutputTapper() { … }
void OutputTapper::SetOutputDeviceForAec(const std::string& output_device_id) { … }
void OutputTapper::Start() { … }
void OutputTapper::Stop() { … }
void OutputTapper::StartListening() { … }
}