blob: a7881c6bbc98ac0354a1d6f5a1a9b1407b888485 [file] [log] [blame]
Paul Stewartf65320c2011-10-13 14:34:52 -07001// Copyright (c) 2011 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_async_connection.h"
6
Peter Qiu8d6b5972014-10-28 15:33:34 -07007#include "shill/net/ip_address.h"
Paul Stewartf65320c2011-10-13 14:34:52 -07008
9namespace shill {
10
11MockAsyncConnection::MockAsyncConnection()
Ben Chancc225ef2014-09-30 13:26:51 -070012 : AsyncConnection("", nullptr, nullptr, base::Callback<void(bool, int)>()) {
13}
Paul Stewartf65320c2011-10-13 14:34:52 -070014
15MockAsyncConnection::~MockAsyncConnection() {}
16
17} // namespace shill