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

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

Issue 1948133004: CWS Private API - isPendingCustodianApproval (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kid_initiated_install
Patch Set: rebasing Created 4 years, 5 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":"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
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": "isPendingCustodianApproval",
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 ]
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_service_sync_unittest.cc ('k') | extensions/browser/extension_function_histogram_value.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698