blob: 2b4fa2614a317d1c94e95e8fa6448e38d3edbecf [file] [log] [blame]
David Rochbergfa1d31d2012-03-20 10:38:07 -04001// 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
7namespace shill {
8
9MockModem::MockModem(const std::string &owner,
Jason Glasgowa585fc32012-06-06 11:04:09 -040010 const std::string &service,
David Rochbergfa1d31d2012-03-20 10:38:07 -040011 const std::string &path,
12 ControlInterface *control_interface,
13 EventDispatcher *dispatcher,
14 Metrics *metrics,
15 Manager *manager,
Ben Chan62028b22012-11-05 11:20:02 -080016 CellularOperatorInfo *cellular_operator_info,
David Rochbergfa1d31d2012-03-20 10:38:07 -040017 mobile_provider_db *provider_db)
Jason Glasgowa585fc32012-06-06 11:04:09 -040018 : Modem(owner, service, path, control_interface, dispatcher, metrics,
Ben Chan62028b22012-11-05 11:20:02 -080019 manager, cellular_operator_info, provider_db) {}
David Rochbergfa1d31d2012-03-20 10:38:07 -040020
21MockModem::~MockModem() {}
22
23} // namespace shill