David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [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_modem.h" |
| 6 | |
| 7 | namespace shill { |
| 8 | |
| 9 | MockModem::MockModem(const std::string &owner, |
| 10 | const std::string &path, |
| 11 | ControlInterface *control_interface, |
| 12 | EventDispatcher *dispatcher, |
| 13 | Metrics *metrics, |
| 14 | Manager *manager, |
| 15 | mobile_provider_db *provider_db) |
| 16 | : Modem(owner, path, control_interface, dispatcher, metrics, manager, |
| 17 | provider_db) {} |
| 18 | |
| 19 | MockModem::~MockModem() {} |
| 20 | |
| 21 | } // namespace shill |