OLD | NEW |
---|---|
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() { |
dschuyler
2017/02/28 19:42:40
How about changing this to isPrefEnforced? That se
stevenjb
2017/02/28 20:04:37
I already suggested that we not include the extra
Dan Beam
2017/02/28 20:07:07
and i still disagree because the code is now wrong
michaelpg
2017/02/28 21:55:50
I added a TODO about the policy name. *this* funct
| |
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 hasPrefPolicyIndicator: function() { |
dschuyler
2017/02/28 19:42:40
How about hasPrefIndicator since RECOMMENDED isn't
stevenjb
2017/02/28 20:04:37
See previous comment.
michaelpg
2017/02/28 21:55:50
RECOMMENDED is a policy, just a non-enforced one.
stevenjb
2017/02/28 21:59:01
That's also a good point, you are correct about wh
| |
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 }; |
OLD | NEW |