OLD | NEW |
---|---|
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":"webstorePrivate", | 7 "namespace":"webstorePrivate", |
8 "description": "none", | 8 "description": "none", |
9 "types": [ | 9 "types": [ |
10 { | 10 { |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
310 "optional": true, | 310 "optional": true, |
311 "parameters": [ | 311 "parameters": [ |
312 { | 312 { |
313 "name": "result", | 313 "name": "result", |
314 "$ref": "Result", | 314 "$ref": "Result", |
315 "description": "Whether an attempt to launch an app succeeded, o r the reason for failure." | 315 "description": "Whether an attempt to launch an app succeeded, o r the reason for failure." |
316 } | 316 } |
317 ] | 317 ] |
318 } | 318 } |
319 ] | 319 ] |
320 }, | |
321 { | |
322 "name": "isExtensionPendingCustodianApproval", | |
asargent_no_longer_on_chrome
2016/06/29 20:50:52
optional naming suggestion: "isPendingCustodianApp
mamir
2016/06/30 10:09:37
Done.
| |
323 "description": "Checks if an extension installed on a Supervised User pr ofile is pending custodian approval.", | |
324 "parameters": [ | |
325 { | |
326 "name": "id", | |
327 "type": "string", | |
328 "description": "The extension id of the extension to be checked." | |
329 }, | |
330 { | |
331 "name": "callback", | |
332 "type": "function", | |
333 "optional": false, | |
334 "parameters": [ | |
335 { "name": "is_pending_approval", "type": "boolean" } | |
336 ] | |
337 } | |
338 ] | |
320 } | 339 } |
321 ] | 340 ] |
322 } | 341 } |
323 ] | 342 ] |
OLD | NEW |