Chromium Code Reviews| Index: chromeos/components/tether/fake_wifi_hotspot_connector.cc |
| diff --git a/chromeos/components/tether/fake_wifi_hotspot_connector.cc b/chromeos/components/tether/fake_wifi_hotspot_connector.cc |
| index d6a90e0dd5cdd22a5104ce28f22b06dd0a3bc090..0a82c4f151960496830f7178ff31bcca7c4e3b7a 100644 |
| --- a/chromeos/components/tether/fake_wifi_hotspot_connector.cc |
| +++ b/chromeos/components/tether/fake_wifi_hotspot_connector.cc |
| @@ -14,7 +14,8 @@ namespace tether { |
| FakeWifiHotspotConnector::FakeWifiHotspotConnector( |
| NetworkStateHandler* network_state_handler) |
| - : WifiHotspotConnector(network_state_handler, nullptr) {} |
| + : WifiHotspotConnector(network_state_handler, |
| + nullptr /* network_connect */) {} |
| FakeWifiHotspotConnector::~FakeWifiHotspotConnector() {} |
| @@ -27,6 +28,7 @@ void FakeWifiHotspotConnector::CallMostRecentCallback( |
| void FakeWifiHotspotConnector::ConnectToWifiHotspot( |
| const std::string& ssid, |
| const std::string& password, |
| + const std::string& guid, |
|
Kyle Horimoto
2017/04/28 22:07:28
tether_network_guid
lesliewatkins
2017/04/29 00:57:54
Done.
|
| const WifiHotspotConnector::WifiConnectionCallback& callback) { |
| most_recent_ssid_ = ssid; |
| most_recent_password_ = password; |