summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/common/extensions/api/proxy.json
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/common/extensions/api/proxy.json')
-rw-r--r--chromium/chrome/common/extensions/api/proxy.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/chrome/common/extensions/api/proxy.json b/chromium/chrome/common/extensions/api/proxy.json
index 2d28bb631b1..4604dc2e5a4 100644
--- a/chromium/chrome/common/extensions/api/proxy.json
+++ b/chromium/chrome/common/extensions/api/proxy.json
@@ -5,14 +5,14 @@
[
{
"namespace": "proxy",
- "description": "Use the <code>chrome.proxy</code> API to manage Chrome's proxy settings. This API relies on the <a href='types.html#ChromeSetting'>ChromeSetting prototype of the type API</a> for getting and setting the proxy configuration.",
+ "description": "Use the <code>chrome.proxy</code> API to manage Chrome's proxy settings. This API relies on the <a href='types#ChromeSetting'>ChromeSetting prototype of the type API</a> for getting and setting the proxy configuration.",
"types": [
{
"id": "ProxyServer",
"type": "object",
"description": "An object encapsulating a single proxy server's specification.",
"properties": {
- "scheme": {"type": "string", "optional": true, "enum": ["http", "https", "socks4", "socks5"], "description": "The scheme (protocol) of the proxy server itself. Defaults to 'http'."},
+ "scheme": {"type": "string", "optional": true, "enum": ["http", "https", "quic", "socks4", "socks5"], "description": "The scheme (protocol) of the proxy server itself. Defaults to 'http'."},
"host": {"type": "string", "description": "The URI of the proxy server. This must be an ASCII hostname (in Punycode format). IDNA is not supported, yet."},
"port": {"type": "integer", "optional": true, "description": "The port of the proxy server. Defaults to a port that depends on the scheme."}
}