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

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

Issue 12996003: Dynamically generate a heading for Extension Docs API pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments - Patch currently being broken up Created 7 years, 6 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
OLDNEW
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 "description": "Use the <code>chrome.proxy</code> module to manage Chrome's proxy settings. This module relies on the <a href='types.html#ChromeSetting'>Chr omeSetting prototype of the type API</a> for getting and setting the proxy confi guration.",
8 "types": [ 9 "types": [
9 { 10 {
10 "id": "ProxyServer", 11 "id": "ProxyServer",
11 "type": "object", 12 "type": "object",
12 "description": "An object encapsulating a single proxy server's specific ation.", 13 "description": "An object encapsulating a single proxy server's specific ation.",
13 "properties": { 14 "properties": {
14 "scheme": {"type": "string", "optional": true, "enum": ["http", "https ", "socks4", "socks5"], "description": "The scheme (protocol) of the proxy serve r itself. Defaults to 'http'."}, 15 "scheme": {"type": "string", "optional": true, "enum": ["http", "https ", "socks4", "socks5"], "description": "The scheme (protocol) of the proxy serve r itself. Defaults to 'http'."},
15 "host": {"type": "string", "description": "The URI of the proxy server . This must be an ASCII hostname (in Punycode format). IDNA is not supported, ye t."}, 16 "host": {"type": "string", "description": "The URI of the proxy server . This must be an ASCII hostname (in Punycode format). IDNA is not supported, ye t."},
16 "port": {"type": "integer", "optional": true, "description": "The port of the proxy server. Defaults to a port that depends on the scheme."} 17 "port": {"type": "integer", "optional": true, "description": "The port of the proxy server. Defaults to a port that depends on the scheme."}
17 } 18 }
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "type": "string", 87 "type": "string",
87 "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."
88 } 89 }
89 } 90 }
90 } 91 }
91 ] 92 ]
92 } 93 }
93 ] 94 ]
94 } 95 }
95 ] 96 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/privacy.json ('k') | chrome/common/extensions/api/push_messaging.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698