Paul Stewart | cf199de | 2012-08-16 07:50:41 -0700 | [diff] [blame] | 1 | // Copyright (c) 2012 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_ethernet.h" |
| 6 | |
| 7 | #include <string> |
| 8 | |
| 9 | namespace shill { |
| 10 | |
| 11 | using std::string; |
| 12 | |
| 13 | MockEthernet::MockEthernet(ControlInterface *control_interface, |
| 14 | EventDispatcher *dispatcher, |
| 15 | Metrics *metrics, |
| 16 | Manager *manager, |
| 17 | const string &link_name, |
| 18 | const string &address, |
| 19 | int interface_index) |
| 20 | : Ethernet(control_interface, |
| 21 | dispatcher, |
| 22 | metrics, |
| 23 | manager, |
| 24 | link_name, |
| 25 | address, |
| 26 | interface_index) {} |
| 27 | |
| 28 | MockEthernet::~MockEthernet() {} |
| 29 | |
| 30 | } // namespace shill |