summaryrefslogtreecommitdiffstats
path: root/remoting/host/host_stub_fake.h
blob: 5757b3644fc86a753776d6cd98773df7b119f8ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// A fake HostStub implementation that does not do anything.

#ifndef REMOTING_PROTOCOL_HOST_STUB_FAKE_H_
#define REMOTING_PROTOCOL_HOST_STUB_FAKE_H_

#include "base/basictypes.h"
#include "remoting/protocol/host_stub.h"

namespace remoting {

class HostStubFake : public protocol::HostStub {
 public:
  HostStubFake() {}
  virtual ~HostStubFake() {}

  virtual void SuggestResolution(
      const protocol::SuggestResolutionRequest* msg, Task* done);

 private:
  DISALLOW_COPY_AND_ASSIGN(HostStubFake);
};

}  // namespace remoting

#endif  // REMOTING_PROTOCOL_HOST_STUB_FAKE_H_