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

Side by Side Diff: chrome/test/data/chromeos/network_settings/settings_with_normalization.json

Issue 11299236: This moves the ONC parsing code into chromeos/network/onc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unit tests Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 {
2 "ethernet-and-vpn": {
3 "Recommended": [],
4 "GUID": "guid",
5 "Type": "Ethernet",
6 "Name": "name",
7 "Ethernet": {
8 "Authentication": "None"
9 },
10 "VPN": {
11 "Type": "L2TP-IPsec",
12 "Host": "some.host.org",
13 "IPsec": {
14 "AuthenticationType": "PSK",
15 "IKEVersion": 1,
16 "PSK": "some_preshared_key",
17 "SaveCredentials": true
18 },
19 "L2TP": {
20 "Username": "some username",
21 "Password": "some password"
22 }
23 }
24 },
25 "ethernet-and-vpn-normalized": {
26 "GUID": "guid",
27 "Type": "Ethernet",
28 "Name": "name",
29 "Ethernet": {
30 "Authentication": "None"
31 }
32 },
33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698