Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(468)

Unified Diff: chromeos/components/tether/fake_wifi_hotspot_connector.cc

Issue 2819303002: Changed wifi arcs to mobile bars for Tether network. (Closed)
Patch Set: khorimoto@ comments Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..c7e46230ade4a55d34e646d0cee98ef086b73dfa 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& tether_network_guid,
Kyle Horimoto 2017/05/03 01:53:33 You should also save tether_network_guid like we d
lesliewatkins 2017/05/03 22:00:24 Done.
const WifiHotspotConnector::WifiConnectionCallback& callback) {
most_recent_ssid_ = ssid;
most_recent_password_ = password;

Powered by Google App Engine
This is Rietveld 408576698