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

Unified Diff: extensions/common/api/networking_private.idl

Issue 1369403006: Add cr-policy-network-indicator and add to internet settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Separate policy indicator strings Created 5 years, 2 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
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | ui/webui/resources/cr_elements/v1_0/network/cr_onc_types.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/api/networking_private.idl
diff --git a/extensions/common/api/networking_private.idl b/extensions/common/api/networking_private.idl
index ea77c3c63725f8123f35251951127cb15f8aea56..2cf52fd5d1a790f118d9f9ea5f296df27f6b8e63 100644
--- a/extensions/common/api/networking_private.idl
+++ b/extensions/common/api/networking_private.idl
@@ -77,10 +77,10 @@ namespace networkingPrivate {
// SharedSetting: The value set for all users of the device. Only provided if
// DeviceEditiable is true (i.e. no policy affects the property or the
// policy provided value is recommened only).
- // UserEditable: True if the UserPolicy allows the property to be edited
- // (i.e. is a recommended value). Defaults to True.
- // DeviceEditable: True if the DevicePolicy allows the property to be
- // edited (i.e. is a recommended value). Defaults to True.
+ // UserEditable: True if a UserPolicy exists and allows the property to be
+ // edited (i.e. is a recommended value). Defaults to False.
+ // DeviceEditable: True if a DevicePolicy exists and allows the property to be
+ // edited (i.e. is a recommended value). Defaults to False.
dictionary ManagedBoolean {
boolean? Active;
@@ -555,11 +555,13 @@ namespace networkingPrivate {
};
dictionary EthernetProperties {
+ boolean? AutoConnect;
DOMString? Authentication;
EAPProperties? EAP;
};
dictionary ManagedEthernetProperties {
+ ManagedBoolean? AutoConnect;
ManagedDOMString? Authentication;
ManagedEAPProperties? EAP;
};
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | ui/webui/resources/cr_elements/v1_0/network/cr_onc_types.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698