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

Unified Diff: chrome/common/extensions/api/developer_private.idl

Issue 1051273002: Update chrome://extensions for supervised users (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update test data Created 5 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/developer_private.idl
diff --git a/chrome/common/extensions/api/developer_private.idl b/chrome/common/extensions/api/developer_private.idl
index ad2c6850cbfd26c6bfcafda3d61158845539e867..539bd6aecad14877f35ddf148ca54a74bdb9cc07 100644
--- a/chrome/common/extensions/api/developer_private.idl
+++ b/chrome/common/extensions/api/developer_private.idl
@@ -150,9 +150,21 @@ namespace developerPrivate {
ViewType type;
};
+ enum ControllerType {
+ POLICY,
+ CHILD_CUSTODIAN,
+ SUPERVISED_USER_CUSTODIAN
+ };
+
+ dictionary ControlledInfo {
+ ControllerType type;
+ DOMString text;
+ };
+
dictionary ExtensionInfo {
boolean actionButtonHidden;
DOMString? blacklistText;
+ ControlledInfo? controlledInfo;
DOMString[] dependentExtensions;
DOMString description;
DisableReasons disableReasons;
@@ -162,7 +174,6 @@ namespace developerPrivate {
DOMString iconUrl;
DOMString id;
AccessModifier incognitoAccess;
- boolean installedByCustodian;
DOMString[] installWarnings;
DOMString? launchUrl;
Location location;
@@ -173,7 +184,6 @@ namespace developerPrivate {
boolean offlineEnabled;
OptionsPage? optionsPage;
DOMString? path;
- DOMString? policyText;
DOMString? prettifiedPath;
AccessModifier runOnAllUrls;
RuntimeError[] runtimeErrors;

Powered by Google App Engine
This is Rietveld 408576698