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

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

Issue 9491002: json_schema_compiler: any, additionalProperties, functions on types (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: add any in arrays to util.h Created 8 years, 9 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
« no previous file with comments | « chrome/common/extensions/api/experimental.app.json ('k') | tools/json_schema_compiler/any.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [ 1 [
2 { 2 {
3 "namespace":"webstorePrivate", 3 "namespace":"webstorePrivate",
4 "nodoc": "true", 4 "nodoc": "true",
5 "functions": [ 5 "functions": [
6 { 6 {
7 "name": "install", 7 "name": "install",
8 "description": "Installs the extension corresponding to the given id", 8 "description": "Installs the extension corresponding to the given id",
9 "parameters": [ 9 "parameters": [
10 { 10 {
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 { "name": "login", "type": "string" } 201 { "name": "login", "type": "string" }
202 ] 202 ]
203 } 203 }
204 ] 204 ]
205 }, 205 },
206 { 206 {
207 "name": "setStoreLogin", 207 "name": "setStoreLogin",
208 "description": "Sets a preference value with the store login.", 208 "description": "Sets a preference value with the store login.",
209 "parameters": [ 209 "parameters": [
210 { "name": "login", "type": "string" }, 210 { "name": "login", "type": "string" },
211 { "name": "callback", "type": "function", "optional": "true" } 211 {
212 "name": "callback",
213 "type": "function",
214 "optional": "true",
215 "parameters": []
216 }
212 ] 217 ]
213 }, 218 },
214 { 219 {
215 "name": "promptBrowserLogin", 220 "name": "promptBrowserLogin",
216 "description": "Causes the browser to bring up the browser login UI.", 221 "description": "Causes the browser to bring up the browser login UI.",
217 "parameters": [ 222 "parameters": [
218 { 223 {
219 "name": "preferred_email", 224 "name": "preferred_email",
220 "type": "string", 225 "type": "string",
221 "description": "The email address to use to pre-populate the login d ialog (can be an empty string)." 226 "description": "The email address to use to pre-populate the login d ialog (can be an empty string)."
(...skipping 29 matching lines...) Expand all
251 "type": "string", 256 "type": "string",
252 "enum": ["webgl_allowed", "webgl_blocked"] 257 "enum": ["webgl_allowed", "webgl_blocked"]
253 } 258 }
254 ] 259 ]
255 } 260 }
256 ] 261 ]
257 } 262 }
258 ] 263 ]
259 } 264 }
260 ] 265 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/experimental.app.json ('k') | tools/json_schema_compiler/any.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698