mukesh agrawal | 7ec7131 | 2011-11-10 02:08:26 +0000 | [diff] [blame] | 1 | // 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 | |
| 7 | using std::string; |
| 8 | using std::vector; |
| 9 | |
| 10 | namespace shill { |
| 11 | |
| 12 | class ControlInterface; |
| 13 | class EventDispatcher; |
| 14 | class Manager; |
| 15 | |
| 16 | MockWiFiService::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 | |
| 28 | MockWiFiService::~MockWiFiService() {} |
| 29 | |
| 30 | } // namespace shill |