dbus: Property<>.value() should be const
[chromium-blink-merge.git] / remoting / protocol / host_stub.h
bloba52429a6fad21506f0a723bbcc05e619bbbabd7e
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.
6 //
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"
14 namespace remoting {
15 namespace protocol {
17 class HostStub {
18 public:
19 HostStub() {}
20 virtual ~HostStub() {}
22 // Currently we don't use the control channel for anything. Add new
23 // message handlers here when necessary.
25 private:
26 DISALLOW_COPY_AND_ASSIGN(HostStub);
29 } // namespace protocol
30 } // namespace remoting
32 #endif // REMOTING_PROTOCOL_HOST_STUB_H_