chromium/remoting/protocol/webrtc_audio_source_adapter.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_PROTOCOL_WEBRTC_AUDIO_SOURCE_ADAPTER_H_
#define REMOTING_PROTOCOL_WEBRTC_AUDIO_SOURCE_ADAPTER_H_

#include <memory>

#include "base/memory/scoped_refptr.h"
#include "base/task/single_thread_task_runner.h"
#include "third_party/webrtc/api/media_stream_interface.h"

namespace webrtc {
class AudioTrackSinkInterface;
}  // namespace webrtc

namespace remoting::protocol {

class AudioSource;

class WebrtcAudioSourceAdapter : public webrtc::AudioSourceInterface {};

}  // namespace remoting::protocol

#endif  // REMOTING_PROTOCOL_WEBRTC_AUDIO_SOURCE_ADAPTER_H_