Paul Stewart | c1dec4d | 2011-12-08 15:25:28 -0800 | [diff] [blame] | 1 | // 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_connection.h" |
| 6 | |
| 7 | #include "shill/ipconfig.h" |
| 8 | |
| 9 | namespace shill { |
| 10 | |
| 11 | MockConnection::MockConnection(const DeviceInfo *device_info) |
Paul Stewart | e00600e | 2012-03-16 07:08:00 -0700 | [diff] [blame] | 12 | : Connection(0, std::string(), Technology::kUnknown, device_info) {} |
Paul Stewart | c1dec4d | 2011-12-08 15:25:28 -0800 | [diff] [blame] | 13 | |
| 14 | MockConnection::~MockConnection() {} |
| 15 | |
| 16 | } // namespace shill |