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, |
Jason Glasgow | a585fc3 | 2012-06-06 11:04:09 -0400 | [diff] [blame] | 10 | const std::string &service, |
David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [diff] [blame] | 11 | const std::string &path, |
| 12 | ControlInterface *control_interface, |
| 13 | EventDispatcher *dispatcher, |
| 14 | Metrics *metrics, |
| 15 | Manager *manager, |
Ben Chan | 62028b2 | 2012-11-05 11:20:02 -0800 | [diff] [blame^] | 16 | CellularOperatorInfo *cellular_operator_info, |
David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [diff] [blame] | 17 | mobile_provider_db *provider_db) |
Jason Glasgow | a585fc3 | 2012-06-06 11:04:09 -0400 | [diff] [blame] | 18 | : Modem(owner, service, path, control_interface, dispatcher, metrics, |
Ben Chan | 62028b2 | 2012-11-05 11:20:02 -0800 | [diff] [blame^] | 19 | manager, cellular_operator_info, provider_db) {} |
David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [diff] [blame] | 20 | |
| 21 | MockModem::~MockModem() {} |
| 22 | |
| 23 | } // namespace shill |