1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Interface of a host that receives commands from a Chromoting client.
7 // This interface handles control messages defined in control.proto.
9 #ifndef REMOTING_PROTOCOL_HOST_STUB_H_
10 #define REMOTING_PROTOCOL_HOST_STUB_H_
12 #include "base/basictypes.h"
20 virtual ~HostStub() {}
22 // Currently we don't use the control channel for anything. Add new
23 // message handlers here when necessary.
26 DISALLOW_COPY_AND_ASSIGN(HostStub
);
29 } // namespace protocol
30 } // namespace remoting
32 #endif // REMOTING_PROTOCOL_HOST_STUB_H_