Arman Uguray | f84a424 | 2013-04-09 20:01:07 -0700 | [diff] [blame] | 1 | // 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 | |
| 10 | using base::Callback; |
| 11 | |
| 12 | namespace shill { |
| 13 | |
| 14 | MockConnectionHealthChecker::MockConnectionHealthChecker( |
| 15 | ConnectionRefPtr connection, |
| 16 | EventDispatcher *dispatcher, |
Prathmesh Prabhu | ba99b59 | 2013-04-17 15:13:14 -0700 | [diff] [blame] | 17 | IPAddressStore *remote_ips, |
Arman Uguray | f84a424 | 2013-04-09 20:01:07 -0700 | [diff] [blame] | 18 | const Callback<void(Result)> &result_callback) |
Prathmesh Prabhu | ba99b59 | 2013-04-17 15:13:14 -0700 | [diff] [blame] | 19 | : ConnectionHealthChecker(connection, |
| 20 | dispatcher, |
| 21 | remote_ips, |
| 22 | result_callback) {} |
Arman Uguray | f84a424 | 2013-04-09 20:01:07 -0700 | [diff] [blame] | 23 | |
| 24 | MockConnectionHealthChecker::~MockConnectionHealthChecker() {} |
| 25 | |
| 26 | } // namespace shill |