Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 3618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3629 "properties": { | 3629 "properties": { |
| 3630 "url": {"type": "string", "optional": true, "description": "URL of he PAC file to be used."} | 3630 "url": {"type": "string", "optional": true, "description": "URL of he PAC file to be used."} |
| 3631 } | 3631 } |
| 3632 }, | 3632 }, |
| 3633 { | 3633 { |
| 3634 "id": "ProxyConfig", | 3634 "id": "ProxyConfig", |
| 3635 "type": "object", | 3635 "type": "object", |
| 3636 "description": "An object encapsulating a complete proxy configuration." , | 3636 "description": "An object encapsulating a complete proxy configuration." , |
| 3637 "properties": { | 3637 "properties": { |
| 3638 "rules": {"$ref": "ProxyRules", "optional": true, "description": "The proxy rules describing this configuration."}, | 3638 "rules": {"$ref": "ProxyRules", "optional": true, "description": "The proxy rules describing this configuration."}, |
| 3639 "autoDetect": {"type": "boolean", "optional": true, "description": "Tr ue if the proxy settings sbould be detected automatically."}, | 3639 "pacScript": {"$ref": "PacScript", "optional": true, "description": "T he proxy auto-config (PAC) script for this configuration."}, |
| 3640 "pacScript": {"$ref": "PacScript", "optional": true, "description": "T he proxy auto-config (PAC) script for this configuration."} | 3640 "mode": {"type": "integer", "description": "0 = Never use a proxy<br>1 = Auto detect proxy settings<br>2 = Manually specify proxy settings<br>3 = Use system proxy settings"} |
|
danno
2010/12/14 12:48:17
this definitely should be a string that gets trans
gfeher
2010/12/16 10:42:04
Done.
| |
| 3641 } | 3641 } |
| 3642 } | 3642 } |
| 3643 ], | 3643 ], |
| 3644 "functions": [ | 3644 "functions": [ |
| 3645 { | 3645 { |
| 3646 "name": "useCustomProxySettings", | 3646 "name": "useCustomProxySettings", |
| 3647 "type": "function", | 3647 "type": "function", |
| 3648 "description": "Apply the given proxy configuration.", | 3648 "description": "Apply the given proxy configuration.", |
| 3649 "parameters": [ | 3649 "parameters": [ |
| 3650 {"name": "config", "$ref": "ProxyConfig"} | 3650 {"name": "config", "$ref": "ProxyConfig"} |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4365 "token": { "type": "string", "optional": true } | 4365 "token": { "type": "string", "optional": true } |
| 4366 } | 4366 } |
| 4367 } | 4367 } |
| 4368 ] | 4368 ] |
| 4369 } | 4369 } |
| 4370 ] | 4370 ] |
| 4371 } | 4371 } |
| 4372 ] | 4372 ] |
| 4373 } | 4373 } |
| 4374 ] | 4374 ] |
| OLD | NEW |