// Copyright 2012 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_AUDIO_WRITER_H_ #define REMOTING_PROTOCOL_AUDIO_WRITER_H_ #include <memory> #include <string> #include "base/compiler_specific.h" #include "base/functional/callback.h" #include "remoting/protocol/audio_stub.h" #include "remoting/protocol/channel_dispatcher_base.h" namespace remoting::protocol { class SessionConfig; class AudioWriter : public ChannelDispatcherBase, public AudioStub { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_AUDIO_WRITER_H_