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..b9b1c572b4122ce716197a2d612943129b865f3d 100644 |
--- a/chromeos/components/tether/wifi_hotspot_connector.h |
+++ b/chromeos/components/tether/wifi_hotspot_connector.h |
@@ -11,6 +11,7 @@ |
#include "base/observer_list.h" |
#include "base/timer/timer.h" |
#include "base/values.h" |
+#include "chromeos/components/tether/active_host.h" |
#include "chromeos/network/network_state_handler_observer.h" |
namespace chromeos { |
@@ -39,6 +40,7 @@ class WifiHotspotConnector : public NetworkStateHandlerObserver { |
// will begin. |
virtual void 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 WifiConnectionCallback& callback); |
// NetworkStateHandlerObserver: |
@@ -65,6 +67,7 @@ class WifiHotspotConnector : public NetworkStateHandlerObserver { |
std::string ssid_; |
std::string password_; |
+ std::string guid_; |
Kyle Horimoto
2017/04/28 22:07:28
tether_network_guid
lesliewatkins
2017/04/29 00:57:54
Done.
|
std::string wifi_guid_; |
Kyle Horimoto
2017/04/28 22:07:28
nit: I know you didn't write this code, but let's
lesliewatkins
2017/04/29 00:57:54
Done.
|
WifiConnectionCallback callback_; |