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

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: Adding unittests 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..43a79a017d1cfbb63a12ab18a4293b7e3aa4d431 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 extensions installed on a Supervised User profiles is pending custodian approval or not.",
Marc Treib 2016/05/09 11:50:19 nit: "extension" and "profile", singular. I'd also
mamir 2016/05/09 13:33:48 Done.
+ "parameters": [
+ {
+ "name": "id",
+ "type": "string",
+ "description": "The extension id of the extensions to be checked."
Marc Treib 2016/05/09 11:50:19 Also here: "extension"
mamir 2016/05/09 13:33:48 Done.
+ },
+ {
+ "name": "callback",
+ "type": "function",
+ "optional": false,
+ "parameters": [
+ { "name": "is_pending_approval", "type": "boolean" }
+ ]
+ }
+ ]
}
]
}

Powered by Google App Engine
This is Rietveld 408576698