blob: ed9958d4b66d33e8d50b4108092e7c6bc989b3d3 [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,
16 mobile_provider_db *provider_db)
Jason Glasgowa585fc32012-06-06 11:04:09 -040017 : Modem(owner, service, path, control_interface, dispatcher, metrics,
18 manager, provider_db) {}
David Rochbergfa1d31d2012-03-20 10:38:07 -040019
20MockModem::~MockModem() {}
21
22} // namespace shill