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

Side by Side Diff: chrome/test/data/chromeos/net/proxy_config.json

Issue 11664005: Extending the translation from ONC to Shill. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Initial patch. 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
OLDNEW
(Empty)
1 [
2 { "ONC_ProxySettings": {
3 "Manual": {
4 "FTPProxy": {
5 "Host": "192.168.2.1",
6 "Port": 8889
7 },
8 "HTTPProxy": {
9 "Host": "192.168.2.1",
10 "Port": 8889
11 },
12 "SOCKS": {
13 "Host": "192.168.2.1",
14 "Port": 8889
15 },
16 "SecureHTTPProxy": {
17 "Host": "192.168.2.1",
18 "Port": 8889
19 }
20 },
21 "Type": "Manual"
22 },
23 "ProxyConfig": {
24 "mode":"fixed_servers",
25 "server":"ftp=192.168.2.1:8889;http=192.168.2.1:8889;socks=socks4://192.16 8.2.1:8889;https=192.168.2.1:8889"
26 }
27 },
28 { "ONC_ProxySettings": {
29 "Type": "PAC",
30 "PAC": "https://proxycfg.my.domain.com/proxy.dat"
31 },
32 "ProxyConfig": {
33 "mode":"pac_script",
34 "pac_mandatory":false,
35 "pac_url":"https://proxycfg.my.domain.com/proxy.dat"
36 }
37 },
38 { "ONC_ProxySettings": {
39 "Type": "Direct"
40 },
41 "ProxyConfig": {
42 "mode": "direct"
43 }
44 }
45 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698