chromium/remoting/protocol/client_stub.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.

// Interface of a client that receives commands from a Chromoting host.
//
// This interface is responsible for a subset of control messages sent to
// the Chromoting client.

#ifndef REMOTING_PROTOCOL_CLIENT_STUB_H_
#define REMOTING_PROTOCOL_CLIENT_STUB_H_

#include "remoting/protocol/clipboard_stub.h"
#include "remoting/protocol/cursor_shape_stub.h"
#include "remoting/protocol/keyboard_layout_stub.h"

namespace remoting::protocol {

class ActiveDisplay;
class Capabilities;
class ExtensionMessage;
class PairingResponse;
class TransportInfo;
class VideoLayout;

class ClientStub : public ClipboardStub,
                   public CursorShapeStub,
                   public KeyboardLayoutStub {};

}  // namespace remoting::protocol

#endif  // REMOTING_PROTOCOL_CLIENT_STUB_H_