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

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

Issue 10381089: Revert 136296 - Make all extension api types fully qualified. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/extensions/api/privacy.json ('k') | chrome/common/extensions/api/tabs.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "dependencies": [ "types" ], 8 "dependencies": [ "types" ],
9 "types": [ 9 "types": [
10 { 10 {
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
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": "types.ChromeSetting", 60 "$ref": "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
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 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/privacy.json ('k') | chrome/common/extensions/api/tabs.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698