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

Side by Side Diff: chrome/common/extensions/api/extension_api.json

Issue 6469030: Support bypassList in Proxy Settings API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 9 years, 10 months 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
1 [ 1 [
2 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "unprivileged": true, 4 "unprivileged": true,
5 "types": [ 5 "types": [
6 { 6 {
7 "id": "MessageSender", 7 "id": "MessageSender",
8 "type": "object", 8 "type": "object",
9 "description": "An object containing information about the script contex t that sent a message or request.", 9 "description": "An object containing information about the script contex t that sent a message or request.",
10 "properties": { 10 "properties": {
(...skipping 3739 matching lines...) Expand 10 before | Expand all | Expand 10 after
3750 }, 3750 },
3751 { 3751 {
3752 "id": "ProxyRules", 3752 "id": "ProxyRules",
3753 "type": "object", 3753 "type": "object",
3754 "description": "An object encapsulating the set of proxy rules for all p rotocols. Use either 'singleProxy' or (a subset of) 'proxyForHttp', 'proxyForHtt ps', 'proxyForFtp' and 'socksProxy'.", 3754 "description": "An object encapsulating the set of proxy rules for all p rotocols. Use either 'singleProxy' or (a subset of) 'proxyForHttp', 'proxyForHtt ps', 'proxyForFtp' and 'socksProxy'.",
3755 "properties": { 3755 "properties": {
3756 "singleProxy": {"$ref": "ProxyServer", "optional": true, "description" : "The proxy server to be used for all per-URL requests (i.e., http, https, and ftp)."}, 3756 "singleProxy": {"$ref": "ProxyServer", "optional": true, "description" : "The proxy server to be used for all per-URL requests (i.e., http, https, and ftp)."},
3757 "proxyForHttp": {"$ref": "ProxyServer", "optional": true, "description ": "The proxy server to be used for HTTP requests."}, 3757 "proxyForHttp": {"$ref": "ProxyServer", "optional": true, "description ": "The proxy server to be used for HTTP requests."},
3758 "proxyForHttps": {"$ref": "ProxyServer", "optional": true, "descriptio n": "The proxy server to be used for HTTPS requests."}, 3758 "proxyForHttps": {"$ref": "ProxyServer", "optional": true, "descriptio n": "The proxy server to be used for HTTPS requests."},
3759 "proxyForFtp": {"$ref": "ProxyServer", "optional": true, "description" : "The proxy server to be used for FTP requests."}, 3759 "proxyForFtp": {"$ref": "ProxyServer", "optional": true, "description" : "The proxy server to be used for FTP requests."},
3760 "socksProxy": {"$ref": "ProxyServer", "optional": true, "description": "The proxy server to be used for SOCKS requests."} 3760 "socksProxy": {"$ref": "ProxyServer", "optional": true, "description": "The proxy server to be used for SOCKS requests."},
3761 "bypassList": {"type": "array", "items": {"type": "string"}, "optional ": true, "description": "List of servers to connect to without a proxy server."}
3761 } 3762 }
3762 }, 3763 },
3763 { 3764 {
3764 "id": "PacScript", 3765 "id": "PacScript",
3765 "type": "object", 3766 "type": "object",
3766 "description": "An object holding proxy auto-config information. Only on e of the fields should be non-empty.", 3767 "description": "An object holding proxy auto-config information. Only on e of the fields should be non-empty.",
3767 "properties": { 3768 "properties": {
3768 "url": {"type": "string", "optional": true, "description": "URL of he PAC file to be used."} 3769 "url": {"type": "string", "optional": true, "description": "URL of he PAC file to be used."}
3769 } 3770 }
3770 }, 3771 },
(...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after
4555 "token": { "type": "string", "optional": true } 4556 "token": { "type": "string", "optional": true }
4556 } 4557 }
4557 } 4558 }
4558 ] 4559 ]
4559 } 4560 }
4560 ] 4561 ]
4561 } 4562 }
4562 ] 4563 ]
4563 } 4564 }
4564 ] 4565 ]
OLDNEW
« no previous file with comments | « chrome/browser/prefs/proxy_config_dictionary.cc ('k') | chrome/common/extensions/docs/experimental.proxy.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698