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

Side by Side Diff: chrome/test/data/chromeos/network_settings/invalid_settings_with_repairs.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 "managed-network-repaired": {
3 "Recommended": [],
4 "GUID": "guid",
5 "Type": "Ethernet",
6 "Name": "name",
7 "Ethernet": {
8 "Authentication": "None"
9 }
10 },
11 "managed-network-unknown-fieldname": {
12 "abc": "def",
13 "Recommended": [],
14 "GUID": "guid",
15 "Type": "Ethernet",
16 "Name": "name",
17 "Ethernet": {
18 "Authentication": "None"
19 }
20 },
21 "managed-network-unknown-type": {
22 "GUID": "guid",
23 "Type": "LTE",
24 "Name": "name",
25 "Ethernet": {
26 "Authentication": "None"
27 }
28 },
29 "managed-network-unknown-recommended": {
30 "Recommended": ["abc"],
31 "GUID": "guid",
32 "Type": "Ethernet",
33 "Name": "name",
34 "Ethernet": {
35 "Authentication": "None"
36 }
37 },
38 "managed-network-dict-recommended": {
39 "Recommended": ["Ethernet"],
40 "GUID": "guid",
41 "Type": "Ethernet",
42 "Name": "name",
43 "Ethernet": {
44 "Authentication": "None"
45 }
46 },
47 "managed-network-missing-required": {
48 "Recommended": [],
49 "Type": "Ethernet",
50 "Name": "name",
51 "Ethernet": {
52 "Authentication": "None"
53 }
54 },
55 "network-repaired": {
56 "Type": "Ethernet",
57 "Name": "name",
58 "Ethernet": {
59 "Authentication": "None"
60 }
61 },
62 "network-unknown-fieldname": {
63 "abc": "def",
64 "Type": "Ethernet",
65 "Name": "name",
66 "Ethernet": {
67 "Authentication": "None"
68 }
69 },
70 "network-unknown-type": {
71 "Type": "LTE",
72 "Name": "name",
73 "Ethernet": {
74 "Authentication": "None"
75 }
76 },
77 "network-missing-required": {
78 "Type": "Ethernet",
79 "Name": "name",
80 "Ethernet": {
81 "Authentication": "None"
82 }
83 },
84 "network-illegal-recommended": {
85 "Recommended": [],
86 "Type": "Ethernet",
87 "Name": "name",
88 "Ethernet": {
89 "Authentication": "None"
90 }
91 },
92 }
OLDNEW
« no previous file with comments | « chrome/test/data/chromeos/network_settings/encrypted.onc ('k') | chrome/test/data/chromeos/network_settings/policy.onc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698