Bug 1947229 Comment 3 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Please note that the proposed changes are for the Firefox's proxy process (not the WebExtension API). 

https://searchfox.org/mozilla-central/source/toolkit/components/extensions/parent/ext-proxy.js

In other words...

```js
// keep
"network.proxy.type",
"network.proxy.no_proxies_on",
"network.proxy.autoconfig_url",
"signon.autologin.proxy",
"network.http.proxy.respect-be-conservative",

// add
"network.proxy.single_proxy",

// remove/deprecate
"network.proxy.http",
"network.proxy.http_port",
"network.proxy.share_proxy_settings",
"network.proxy.ssl",
"network.proxy.ssl_port",
"network.proxy.socks",
"network.proxy.socks_port",
"network.proxy.socks_version",
"network.proxy.socks_remote_dns",
"network.proxy.socks5_remote_dns",
```
Please note that the proposed changes are for the Firefox's proxy process (not the WebExtension API). 

In other words...

```js
// keep
"network.proxy.type",
"network.proxy.no_proxies_on",
"network.proxy.autoconfig_url",
"signon.autologin.proxy",
"network.http.proxy.respect-be-conservative",

// add
"network.proxy.single_proxy",

// remove/deprecate
"network.proxy.http",
"network.proxy.http_port",
"network.proxy.share_proxy_settings",
"network.proxy.ssl",
"network.proxy.ssl_port",
"network.proxy.socks",
"network.proxy.socks_port",
"network.proxy.socks_version",
"network.proxy.socks_remote_dns",
"network.proxy.socks5_remote_dns",
```
Please note that the proposed changes are for the Firefox's proxy process (not the WebExtension API). 

In other words...

```js
// keep
"network.proxy.type",
"network.proxy.no_proxies_on",
"network.proxy.autoconfig_url",
"signon.autologin.proxy",
"network.http.proxy.respect-be-conservative",

// add
"network.proxy.single_proxy",
  "network.proxy.single_proxy.scheme",
  "network.proxy.single_proxy.host",
  "network.proxy.single_proxy.port",

// remove/deprecate
"network.proxy.http",
"network.proxy.http_port",
"network.proxy.share_proxy_settings",
"network.proxy.ssl",
"network.proxy.ssl_port",
"network.proxy.socks",
"network.proxy.socks_port",
"network.proxy.socks_version",
"network.proxy.socks_remote_dns",
"network.proxy.socks5_remote_dns",
```

Back to Bug 1947229 Comment 3