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

Side by Side Diff: ui/webui/resources/cr_elements/policy/cr_policy_pref_behavior.js

Issue 2696903005: Move common cr-policy-indicator behavior into CrPolicyIndicatorBehavior (Closed)
Patch Set: comments Created 3 years, 10 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 * @fileoverview Behavior for policy controlled settings prefs. 6 * @fileoverview Behavior for policy controlled settings prefs.
7 */ 7 */
8 8
9 /** @polymerBehavior */ 9 /** @polymerBehavior */
10 var CrPolicyPrefBehavior = { 10 var CrPolicyPrefBehavior = {
11 /** 11 /**
12 * @param {!chrome.settingsPrivate.PrefObject} pref 12 * @return {boolean} True if |this.pref| is controlled by an enforced policy.
13 * @return {boolean} True if the pref is controlled by an enforced policy.
14 */ 13 */
15 isPrefPolicyControlled: function(pref) { 14 isPrefPolicyControlled: function() {
16 return pref.enforcement == chrome.settingsPrivate.Enforcement.ENFORCED && 15 return (
17 pref.controlledBy != chrome.settingsPrivate.ControlledBy.EXTENSION; 16 this.pref.enforcement == chrome.settingsPrivate.Enforcement.ENFORCED &&
17 this.pref.controlledBy !=
18 chrome.settingsPrivate.ControlledBy.EXTENSION);
18 }, 19 },
19 20
20 /** 21 /**
21 * @param {!chrome.settingsPrivate.ControlledBy|undefined} controlledBy 22 * @return {boolean} True if |this.pref| has a recommended or enforced policy.
22 * @param {!chrome.settingsPrivate.Enforcement|undefined} enforcement
23 * @return {CrPolicyIndicatorType} The indicator type based on |controlledBy|
24 * and |enforcement|.
25 */ 23 */
26 getIndicatorType: function(controlledBy, enforcement) { 24 hasPolicy: function() {
stevenjb 2017/02/23 18:21:39 This is why I was confused with the controlled-but
michaelpg 2017/02/28 01:16:29 Done (only used by controlled-button to show the i
27 if (enforcement == chrome.settingsPrivate.Enforcement.RECOMMENDED) 25 return this.isPrefPolicyControlled() ||
28 return CrPolicyIndicatorType.RECOMMENDED; 26 this.pref.enforcement == chrome.settingsPrivate.Enforcement.RECOMMENDED;
29 if (enforcement == chrome.settingsPrivate.Enforcement.ENFORCED) {
30 switch (controlledBy) {
31 case chrome.settingsPrivate.ControlledBy.PRIMARY_USER:
32 return CrPolicyIndicatorType.PRIMARY_USER;
33 case chrome.settingsPrivate.ControlledBy.OWNER:
34 return CrPolicyIndicatorType.OWNER;
35 case chrome.settingsPrivate.ControlledBy.USER_POLICY:
36 return CrPolicyIndicatorType.USER_POLICY;
37 case chrome.settingsPrivate.ControlledBy.DEVICE_POLICY:
38 return CrPolicyIndicatorType.DEVICE_POLICY;
39 }
40 }
41 return CrPolicyIndicatorType.NONE;
42 }, 27 },
43 }; 28 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698