blob: 2512b45b048b73d45650ff48fa0a6236d856e3da [file] [log] [blame]
Arman Ugurayf84a4242013-04-09 20:01:07 -07001// Copyright (c) 2013 The Chromium OS 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.
4
5#include "shill/mock_connection_health_checker.h"
6
7#include "shill/async_connection.h"
8#include "shill/connection.h"
9
10using base::Callback;
11
12namespace shill {
13
14MockConnectionHealthChecker::MockConnectionHealthChecker(
15 ConnectionRefPtr connection,
Paul Stewart1e006c62015-06-16 12:29:06 -070016 EventDispatcher* dispatcher,
17 IPAddressStore* remote_ips,
18 const Callback<void(Result)>& result_callback)
Prathmesh Prabhuba99b592013-04-17 15:13:14 -070019 : ConnectionHealthChecker(connection,
20 dispatcher,
21 remote_ips,
22 result_callback) {}
Arman Ugurayf84a4242013-04-09 20:01:07 -070023
24MockConnectionHealthChecker::~MockConnectionHealthChecker() {}
25
26} // namespace shill