// 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 host that receives commands from a Chromoting client. // // This interface handles control messages defined in control.proto. #ifndef REMOTING_PROTOCOL_HOST_STUB_H_ #define REMOTING_PROTOCOL_HOST_STUB_H_ namespace remoting::protocol { class AudioControl; class Capabilities; class ClientResolution; class ExtensionMessage; class PairingRequest; class PeerConnectionParameters; class SelectDesktopDisplayRequest; class VideoControl; class VideoLayout; class HostStub { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_HOST_STUB_H_