#ifndef REMOTING_PROTOCOL_WEBRTC_CONNECTION_TO_CLIENT_H_
#define REMOTING_PROTOCOL_WEBRTC_CONNECTION_TO_CLIENT_H_
#include <stdint.h>
#include <memory>
#include <string>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/task/single_thread_task_runner.h"
#include "base/threading/thread_checker.h"
#include "remoting/protocol/channel_dispatcher_base.h"
#include "remoting/protocol/connection_to_client.h"
#include "remoting/protocol/host_video_stats_dispatcher.h"
#include "remoting/protocol/session.h"
#include "remoting/protocol/webrtc_transport.h"
namespace remoting::protocol {
class WebrtcVideoEncoderFactory;
class HostControlDispatcher;
class HostEventDispatcher;
class WebrtcConnectionToClient : public ConnectionToClient,
public Session::EventHandler,
public WebrtcTransport::EventHandler,
public ChannelDispatcherBase::EventHandler { … };
}
#endif