| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 [ | 5 [ |
| 6 { | 6 { |
| 7 "namespace": "proxy", | 7 "namespace": "proxy", |
| 8 "dependencies": [ "types" ], | 8 "dependencies": [ "types" ], |
| 9 "types": [ | 9 "types": [ |
| 10 { | 10 { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "mode": { | 50 "mode": { |
| 51 "type": "string", | 51 "type": "string", |
| 52 "enum": ["direct", "auto_detect", "pac_script", "fixed_servers", "sy
stem"], | 52 "enum": ["direct", "auto_detect", "pac_script", "fixed_servers", "sy
stem"], |
| 53 "description": "'direct' = Never use a proxy<br>'auto_detect' = Auto
detect proxy settings<br>'pac_script' = Use specified PAC script<br>'fixed_serv
ers' = Manually specify proxy servers<br>'system' = Use system proxy settings" | 53 "description": "'direct' = Never use a proxy<br>'auto_detect' = Auto
detect proxy settings<br>'pac_script' = Use specified PAC script<br>'fixed_serv
ers' = Manually specify proxy servers<br>'system' = Use system proxy settings" |
| 54 } | 54 } |
| 55 } | 55 } |
| 56 } | 56 } |
| 57 ], | 57 ], |
| 58 "properties": { | 58 "properties": { |
| 59 "settings": { | 59 "settings": { |
| 60 "$ref": "ChromeSetting", | 60 "$ref": "types.ChromeSetting", |
| 61 "description": "Proxy settings to be used. The value of this setting is
a ProxyConfig object.", | 61 "description": "Proxy settings to be used. The value of this setting is
a ProxyConfig object.", |
| 62 "value": [ | 62 "value": [ |
| 63 "proxy", | 63 "proxy", |
| 64 {"$ref": "ProxyConfig"} | 64 {"$ref": "ProxyConfig"} |
| 65 ] | 65 ] |
| 66 } | 66 } |
| 67 }, | 67 }, |
| 68 "events": [ | 68 "events": [ |
| 69 { | 69 { |
| 70 "name": "onProxyError", | 70 "name": "onProxyError", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 87 "type": "string", | 87 "type": "string", |
| 88 "description": "Additional details about the error such as a Jav
aScript runtime error." | 88 "description": "Additional details about the error such as a Jav
aScript runtime error." |
| 89 } | 89 } |
| 90 } | 90 } |
| 91 } | 91 } |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 ] | 94 ] |
| 95 } | 95 } |
| 96 ] | 96 ] |
| OLD | NEW |