mukesh agrawal | 9da0777 | 2013-05-15 14:15:17 -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_ppp_device.h" |
| 6 | |
| 7 | namespace shill { |
| 8 | |
| 9 | MockPPPDevice::MockPPPDevice(ControlInterface *control, |
| 10 | EventDispatcher *dispatcher, |
| 11 | Metrics *metrics, |
| 12 | Manager *manager, |
| 13 | const std::string &link_name, |
| 14 | int interface_index) |
| 15 | : PPPDevice(control, dispatcher, metrics, manager, link_name, |
| 16 | interface_index) {} |
| 17 | |
| 18 | MockPPPDevice::~MockPPPDevice() {} |
| 19 | |
| 20 | } // namespace shill |