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

Side by Side Diff: chromeos/test/data/network/settings_with_normalization.json

Issue 750313003: ONC: Add IPConfigType. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ipconfig_object
Patch Set: Created 6 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
OLDNEW
1 { 1 {
2 "irrelevant-staticipconfig": {
3 "GUID": "guid",
4 "Type": "Ethernet",
5 "Name": "name",
6 "Ethernet": {
7 "Authentication": "None"
8 },
9 "StaticIPConfig": {
10 "Gateway":"1.1.1.1",
11 "IPAddress": "127.0.0.1"
12 }
13 },
14 "irrelevant-staticipconfig-normalized": {
15 "GUID": "guid",
16 "Type": "Ethernet",
17 "Name": "name",
18 "Ethernet": {
19 "Authentication": "None"
20 }
21 },
2 "ethernet-and-vpn": { 22 "ethernet-and-vpn": {
3 "Recommended": [], 23 "Recommended": [],
4 "GUID": "guid", 24 "GUID": "guid",
5 "Type": "Ethernet", 25 "Type": "Ethernet",
6 "Name": "name", 26 "Name": "name",
7 "Ethernet": { 27 "Ethernet": {
8 "Authentication": "None" 28 "Authentication": "None"
9 }, 29 },
10 "VPN": { 30 "VPN": {
11 "Type": "L2TP-IPsec", 31 "Type": "L2TP-IPsec",
(...skipping 12 matching lines...) Expand all
24 }, 44 },
25 "ethernet-and-vpn-normalized": { 45 "ethernet-and-vpn-normalized": {
26 "GUID": "guid", 46 "GUID": "guid",
27 "Type": "Ethernet", 47 "Type": "Ethernet",
28 "Name": "name", 48 "Name": "name",
29 "Ethernet": { 49 "Ethernet": {
30 "Authentication": "None" 50 "Authentication": "None"
31 } 51 }
32 }, 52 },
33 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698