blob: dbf4ffe19e4b810c25677db8af065eb34f78f29c [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,
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
19MockModem::~MockModem() {}
20
21} // namespace shill