blob: 9dd6e5b32e821914af4efbf4cf1972f4ed45a6e6 [file] [log] [blame]
mukesh agrawal7ec71312011-11-10 02:08:26 +00001// Copyright (c) 2011 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_wifi_service.h"
6
7using std::string;
8using std::vector;
9
10namespace shill {
11
12class ControlInterface;
13class EventDispatcher;
14class Manager;
15
16MockWiFiService::MockWiFiService(ControlInterface *control_interface,
17 EventDispatcher *dispatcher,
18 Manager *manager,
19 const WiFiRefPtr &device,
20 const vector<uint8_t> &ssid,
21 const string &mode,
22 const string &security,
23 bool hidden_ssid)
24 : WiFiService(
25 control_interface, dispatcher, manager, device, ssid, mode, security,
26 hidden_ssid) {}
27
28MockWiFiService::~MockWiFiService() {}
29
30} // namespace shill