Thieu Le | 3426c8f | 2012-01-11 17:35:11 -0800 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
mukesh agrawal | 7ec7131 | 2011-11-10 02:08:26 +0000 | [diff] [blame] | 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, |
Thieu Le | 3426c8f | 2012-01-11 17:35:11 -0800 | [diff] [blame] | 18 | Metrics *metrics, |
mukesh agrawal | 7ec7131 | 2011-11-10 02:08:26 +0000 | [diff] [blame] | 19 | Manager *manager, |
| 20 | const WiFiRefPtr &device, |
| 21 | const vector<uint8_t> &ssid, |
| 22 | const string &mode, |
| 23 | const string &security, |
| 24 | bool hidden_ssid) |
| 25 | : WiFiService( |
Thieu Le | 3426c8f | 2012-01-11 17:35:11 -0800 | [diff] [blame] | 26 | control_interface, dispatcher, metrics, manager, device, ssid, mode, |
| 27 | security, hidden_ssid) {} |
mukesh agrawal | 7ec7131 | 2011-11-10 02:08:26 +0000 | [diff] [blame] | 28 | |
| 29 | MockWiFiService::~MockWiFiService() {} |
| 30 | |
| 31 | } // namespace shill |