Chromium Code Reviews| Index: chromeos/components/tether/wifi_hotspot_connector.h |
| diff --git a/chromeos/components/tether/wifi_hotspot_connector.h b/chromeos/components/tether/wifi_hotspot_connector.h |
| index 137ae7a675aa2ce37648e5a801e2dfe8ad86ce79..ec2b9c1abbcec6622d48c2054eb10e7e1ce8ea2c 100644 |
| --- a/chromeos/components/tether/wifi_hotspot_connector.h |
| +++ b/chromeos/components/tether/wifi_hotspot_connector.h |
| @@ -24,8 +24,7 @@ namespace tether { |
| // Connects to a Wi-Fi hotspot, given an SSID and password. |
| class WifiHotspotConnector : public NetworkStateHandlerObserver { |
| public: |
| - WifiHotspotConnector(NetworkStateHandler* network_state_handler, |
| - NetworkConnect* network_connect); |
| + WifiHotspotConnector(); |
| ~WifiHotspotConnector() override; |
| // Function which receives the GUID of the connected Wi-Fi hotspot. If |
| @@ -44,6 +43,10 @@ class WifiHotspotConnector : public NetworkStateHandlerObserver { |
| // NetworkStateHandlerObserver: |
| void NetworkPropertiesUpdated(const NetworkState* network) override; |
| + protected: |
| + WifiHotspotConnector(NetworkStateHandler* network_state_handler, |
| + NetworkConnect* network_connect); |
|
stevenjb
2017/04/10 20:26:59
One constructor
Kyle Horimoto
2017/04/11 01:40:40
Done.
|
| + |
| private: |
| friend class WifiHotspotConnectorTest; |