Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
|
Mattias Nissler (ping if slow)
2012/11/02 10:10:00
"normalize.json" is a curious name. If this is the
pneubeck (no reviews)
2012/11/05 12:04:48
It contains both. Renamed to "settings_with_normal
| |
| 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 } | |
| OLD | NEW |