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

Unified 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: Respond to 2nd round of comments from treib@ Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/webstore_private.json
diff --git a/chrome/common/extensions/api/webstore_private.json b/chrome/common/extensions/api/webstore_private.json
index 0296e3db36d9c65f6120628589e9750c805a66f1..2aba13a1be71b1c7c59cf3238e2cc3bf5d24fb56 100644
--- a/chrome/common/extensions/api/webstore_private.json
+++ b/chrome/common/extensions/api/webstore_private.json
@@ -317,6 +317,25 @@
]
}
]
+ },
+ {
+ "name": "isExtensionPendingCustodianApproval",
+ "description": "Checks if an extension installed on a Supervised User profile is pending custodian approval.",
+ "parameters": [
+ {
+ "name": "id",
+ "type": "string",
+ "description": "The extension id of the extension to be checked."
+ },
+ {
+ "name": "callback",
+ "type": "function",
+ "optional": false,
+ "parameters": [
+ { "name": "is_pending_approval", "type": "boolean" }
+ ]
+ }
+ ]
}
]
}

Powered by Google App Engine
This is Rietveld 408576698