| 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);
|
| +
|
| private:
|
| friend class WifiHotspotConnectorTest;
|
|
|
|
|