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

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

Issue 759663004: ONC: add support for non-utf-8 SSIDs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed issues 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 "ethernet-and-vpn": { 2 "ethernet-and-vpn": {
3 "Recommended": [], 3 "Recommended": [],
4 "GUID": "guid", 4 "GUID": "guid",
5 "Type": "Ethernet", 5 "Type": "Ethernet",
6 "Name": "name", 6 "Name": "name",
7 "Ethernet": { 7 "Ethernet": {
8 "Authentication": "None" 8 "Authentication": "None"
9 }, 9 },
10 "VPN": { 10 "VPN": {
(...skipping 12 matching lines...) Expand all
23 } 23 }
24 }, 24 },
25 "ethernet-and-vpn-normalized": { 25 "ethernet-and-vpn-normalized": {
26 "GUID": "guid", 26 "GUID": "guid",
27 "Type": "Ethernet", 27 "Type": "Ethernet",
28 "Name": "name", 28 "Name": "name",
29 "Ethernet": { 29 "Ethernet": {
30 "Authentication": "None" 30 "Authentication": "None"
31 } 31 }
32 }, 32 },
33 "wifi": {
34 "GUID": "{77db0089-0bc8-4358-929c-123xcv}",
35 "Type": "WiFi",
36 "Name": "SomeWifi-XY",
37 "WiFi": {
38 "SSID": "SomeWifi-XY",
39 "Security": "None",
40 "Recommended": [ "AutoConnect" ]
41 }
42 },
43 "wifi-normalized": {
44 "GUID": "{77db0089-0bc8-4358-929c-123xcv}",
45 "Type": "WiFi",
46 "Name": "SomeWifi-XY",
47 "WiFi": {
48 "SSID": "SomeWifi-XY",
49 "HexSSID": "536F6D65576966692D5859",
50 "Security": "None"
51 }
52 }
33 } 53 }
OLDNEW
« no previous file with comments | « chromeos/test/data/network/invalid_settings_with_repairs.json ('k') | chromeos/test/data/network/toplevel_wifi_hexssid.onc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698