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

Unified Diff: components/wifi/fake_wifi_service.cc

Issue 275543005: Use GUID instead of ServicePath in networkingPrivate API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 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: components/wifi/fake_wifi_service.cc
diff --git a/components/wifi/fake_wifi_service.cc b/components/wifi/fake_wifi_service.cc
index 62aec3feffd1a06df9dd366d9a63134df3241394..c8a43ece40ee290e71028c0472848d91055f62f9 100644
--- a/components/wifi/fake_wifi_service.cc
+++ b/components/wifi/fake_wifi_service.cc
@@ -27,6 +27,7 @@ FakeWiFiService::FakeWiFiService() {
}
{
WiFiService::NetworkProperties network_properties;
+ network_properties.connectable = true;
network_properties.connection_state = onc::connection_state::kConnected;
network_properties.guid = "stub_wifi1";
network_properties.name = "wifi1";
@@ -47,6 +48,7 @@ FakeWiFiService::FakeWiFiService() {
}
{
WiFiService::NetworkProperties network_properties;
+ network_properties.connectable = true;
network_properties.connection_state = onc::connection_state::kNotConnected;
network_properties.guid = "stub_wifi2";
network_properties.name = "wifi2_PSK";

Powered by Google App Engine
This is Rietveld 408576698