diff options
author | tbarzic@chromium.org <tbarzic@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-11 16:11:51 +0000 |
---|---|---|
committer | tbarzic@chromium.org <tbarzic@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-11 16:11:51 +0000 |
commit | 6e2b7c7b4f2edde37d1ae7428a26be172c16c3e1 (patch) | |
tree | 8826c8b7871d5bd5b02cbdb246c3c19465b3d6e6 /components/wifi/fake_wifi_service.cc | |
parent | e6e20549d2605c8d191f3f2e60f90ff83a38ab6e (diff) | |
download | chromium_src-6e2b7c7b4f2edde37d1ae7428a26be172c16c3e1.zip chromium_src-6e2b7c7b4f2edde37d1ae7428a26be172c16c3e1.tar.gz chromium_src-6e2b7c7b4f2edde37d1ae7428a26be172c16c3e1.tar.bz2 |
NetworkingPrivate API events should supply list of GUIDs, not service paths
Update API tests so they don't assume service_path == GUID
BUG=381786
TBR=mef (updated test expectations in components/wifi/fake_wifi_service.cc)
Review URL: https://codereview.chromium.org/320063002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276420 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/wifi/fake_wifi_service.cc')
-rw-r--r-- | components/wifi/fake_wifi_service.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/wifi/fake_wifi_service.cc b/components/wifi/fake_wifi_service.cc index 91b2d3e..3be2af5 100644 --- a/components/wifi/fake_wifi_service.cc +++ b/components/wifi/fake_wifi_service.cc @@ -16,7 +16,7 @@ FakeWiFiService::FakeWiFiService() { { NetworkProperties network_properties; network_properties.connection_state = onc::connection_state::kConnected; - network_properties.guid = "stub_wifi1"; + network_properties.guid = "stub_wifi1_GUID"; network_properties.name = "wifi1"; network_properties.type = onc::network_type::kWiFi; network_properties.frequency = 0; @@ -42,7 +42,7 @@ FakeWiFiService::FakeWiFiService() { { NetworkProperties network_properties; network_properties.connection_state = onc::connection_state::kNotConnected; - network_properties.guid = "stub_wifi2"; + network_properties.guid = "stub_wifi2_GUID"; network_properties.name = "wifi2_PSK"; network_properties.type = onc::network_type::kWiFi; network_properties.frequency = 5000; |