blob: 66b2a5c779cf288600c0d4756f1ccd6dd2cac7fb [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,
16 EventDispatcher *dispatcher,
Prathmesh Prabhuba99b592013-04-17 15:13:14 -070017 IPAddressStore *remote_ips,
Arman Ugurayf84a4242013-04-09 20:01:07 -070018 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