summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/fake_privet_daemon_client.h
blob: ad5300bce60b8ed23e42ee8c0f4c1788602533e7 (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
30
31
// Copyright 2014 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.

#ifndef CHROMEOS_DBUS_FAKE_PRIVET_DAEMON_CLIENT_H_
#define CHROMEOS_DBUS_FAKE_PRIVET_DAEMON_CLIENT_H_

#include "base/macros.h"
#include "chromeos/dbus/privet_daemon_client.h"

namespace chromeos {

// A fake implementation of PrivetDaemonClient. Invokes callbacks immediately.
class FakePrivetDaemonClient : public PrivetDaemonClient {
 public:
  FakePrivetDaemonClient();
  ~FakePrivetDaemonClient() override;

  // DBusClient overrides:
  void Init(dbus::Bus* bus) override;

  // PrivetClient overrides:
  void GetSetupStatus(const GetSetupStatusCallback& callback) override;

 private:
  DISALLOW_COPY_AND_ASSIGN(FakePrivetDaemonClient);
};

}  // namespace chromeos

#endif  // CHROMEOS_DBUS_FAKE_PRIVET_DAEMON_CLIENT_H_