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

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

Issue 2819303002: Changed wifi arcs to mobile bars for Tether network. (Closed)
Patch Set: Fixed small typo preventing unit tests from building. Created 3 years, 7 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.h
diff --git a/chromeos/components/tether/fake_wifi_hotspot_connector.h b/chromeos/components/tether/fake_wifi_hotspot_connector.h
index 6518eab625777643951532547250a0f84e000d66..ca9620ab32316e0942094dddd9f2adb8ec46763c 100644
--- a/chromeos/components/tether/fake_wifi_hotspot_connector.h
+++ b/chromeos/components/tether/fake_wifi_hotspot_connector.h
@@ -27,15 +27,21 @@ class FakeWifiHotspotConnector : public WifiHotspotConnector {
std::string most_recent_password() { return most_recent_password_; }
+ std::string most_recent_tether_network_guid() {
+ return most_recent_tether_network_guid_;
+ }
+
// WifiHotspotConnector:
void ConnectToWifiHotspot(
const std::string& ssid,
const std::string& password,
+ const std::string& tether_network_guid,
const WifiHotspotConnector::WifiConnectionCallback& callback) override;
private:
std::string most_recent_ssid_;
std::string most_recent_password_;
+ std::string most_recent_tether_network_guid_;
WifiHotspotConnector::WifiConnectionCallback most_recent_callback_;
DISALLOW_COPY_AND_ASSIGN(FakeWifiHotspotConnector);

Powered by Google App Engine
This is Rietveld 408576698