chromium/remoting/protocol/host_control_dispatcher.h

// 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_HOST_CONTROL_DISPATCHER_H_
#define REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_

#include <cstddef>

#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "remoting/protocol/channel_dispatcher_base.h"
#include "remoting/protocol/client_stub.h"
#include "remoting/protocol/clipboard_stub.h"
#include "remoting/protocol/cursor_shape_stub.h"

namespace remoting::protocol {

class HostStub;
class PairingResponse;

// HostControlDispatcher dispatches incoming messages on the control channel to
// HostStub or ClipboardStub, and also implements ClientStub and CursorShapeStub
// for outgoing messages.
class HostControlDispatcher : public ChannelDispatcherBase, public ClientStub {};

}  // namespace remoting::protocol

#endif  // REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_