diff options
author | stevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-22 06:21:40 +0000 |
---|---|---|
committer | stevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-22 06:21:40 +0000 |
commit | edf1e492aaea5cd30ac5e407dc7149c848e89ee5 (patch) | |
tree | c10d57898a082f9175b4ffeaec64ebb576dcee49 /chromeos/test | |
parent | 1d65acd5b5839c49e2bf451387c8143984379006 (diff) | |
download | chromium_src-edf1e492aaea5cd30ac5e407dc7149c848e89ee5.zip chromium_src-edf1e492aaea5cd30ac5e407dc7149c848e89ee5.tar.gz chromium_src-edf1e492aaea5cd30ac5e407dc7149c848e89ee5.tar.bz2 |
Add Device properties for Cellular to MNCH for networkingPrivate
BUG=374003
Review URL: https://codereview.chromium.org/291553002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272119 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/test')
-rw-r--r-- | chromeos/test/data/network/shill_cellular_with_state.json | 11 | ||||
-rw-r--r-- | chromeos/test/data/network/translation_of_shill_cellular_with_state.onc | 5 |
2 files changed, 15 insertions, 1 deletions
diff --git a/chromeos/test/data/network/shill_cellular_with_state.json b/chromeos/test/data/network/shill_cellular_with_state.json index 0df6822c..96d0f70 100644 --- a/chromeos/test/data/network/shill_cellular_with_state.json +++ b/chromeos/test/data/network/shill_cellular_with_state.json @@ -34,5 +34,14 @@ "username": "test-username3", "password": "test-password3" } - ] + ], + "Device": { + // This dictionary contains Device properties and not Service properties as + // above. + "Cellular.AllowRoaming": true, + "Cellular.HomeProvider": { + "country": "us", + "name": "cellular_provider" + } + } } diff --git a/chromeos/test/data/network/translation_of_shill_cellular_with_state.onc b/chromeos/test/data/network/translation_of_shill_cellular_with_state.onc index 56534c4..0ce9ce7 100644 --- a/chromeos/test/data/network/translation_of_shill_cellular_with_state.onc +++ b/chromeos/test/data/network/translation_of_shill_cellular_with_state.onc @@ -4,6 +4,11 @@ "Cellular": { "ActivateOverNonCellularNetwork": false, "ActivationState": "activated", + "AllowRoaming": true, + "HomeProvider": { + "country": "us", + "name": "cellular_provider" + }, "ServingOperator": { "Code": "test-code", "Country": "test-country", |