Chromium Code Reviews| 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 * @param {!chrome.settingsPrivate.PrefObject} pref |
| 13 * @return {boolean} True if the pref is controlled by an enforced policy. | 13 * @return {boolean} True if the pref is controlled by an enforced policy. |
| 14 */ | 14 */ |
| 15 isPrefPolicyControlled: function(pref) { | 15 isPrefPolicyControlled: function(pref) { |
| 16 return pref.enforcement == chrome.settingsPrivate.Enforcement.ENFORCED && | 16 return pref.enforcement == chrome.settingsPrivate.Enforcement.ENFORCED; |
| 17 pref.controlledBy != chrome.settingsPrivate.ControlledBy.EXTENSION; | |
|
Dan Beam
2017/02/24 04:44:20
policy != extension
Dan Beam
2017/02/24 04:45:45
as in: this method is named "isPrefPolicyControlle
dschuyler
2017/02/24 21:36:46
Acknowledged.
dschuyler
2017/02/24 21:36:46
Ah, and this function isn't really checking whethe
| |
| 18 }, | 17 }, |
| 19 | 18 |
| 20 /** | 19 /** |
| 21 * @param {!chrome.settingsPrivate.ControlledBy|undefined} controlledBy | 20 * @param {!chrome.settingsPrivate.ControlledBy|undefined} controlledBy |
| 22 * @param {!chrome.settingsPrivate.Enforcement|undefined} enforcement | 21 * @param {!chrome.settingsPrivate.Enforcement|undefined} enforcement |
| 23 * @return {CrPolicyIndicatorType} The indicator type based on |controlledBy| | 22 * @return {CrPolicyIndicatorType} The indicator type based on |controlledBy| |
| 24 * and |enforcement|. | 23 * and |enforcement|. |
| 25 */ | 24 */ |
| 26 getIndicatorType: function(controlledBy, enforcement) { | 25 getIndicatorType: function(controlledBy, enforcement) { |
| 27 if (enforcement == chrome.settingsPrivate.Enforcement.RECOMMENDED) | 26 if (enforcement == chrome.settingsPrivate.Enforcement.RECOMMENDED) |
| 28 return CrPolicyIndicatorType.RECOMMENDED; | 27 return CrPolicyIndicatorType.RECOMMENDED; |
| 29 if (enforcement == chrome.settingsPrivate.Enforcement.ENFORCED) { | 28 if (enforcement == chrome.settingsPrivate.Enforcement.ENFORCED) { |
| 30 switch (controlledBy) { | 29 switch (controlledBy) { |
| 31 case chrome.settingsPrivate.ControlledBy.PRIMARY_USER: | 30 case chrome.settingsPrivate.ControlledBy.PRIMARY_USER: |
| 32 return CrPolicyIndicatorType.PRIMARY_USER; | 31 return CrPolicyIndicatorType.PRIMARY_USER; |
| 33 case chrome.settingsPrivate.ControlledBy.OWNER: | 32 case chrome.settingsPrivate.ControlledBy.OWNER: |
| 34 return CrPolicyIndicatorType.OWNER; | 33 return CrPolicyIndicatorType.OWNER; |
| 35 case chrome.settingsPrivate.ControlledBy.USER_POLICY: | 34 case chrome.settingsPrivate.ControlledBy.USER_POLICY: |
| 36 return CrPolicyIndicatorType.USER_POLICY; | 35 return CrPolicyIndicatorType.USER_POLICY; |
| 37 case chrome.settingsPrivate.ControlledBy.DEVICE_POLICY: | 36 case chrome.settingsPrivate.ControlledBy.DEVICE_POLICY: |
| 38 return CrPolicyIndicatorType.DEVICE_POLICY; | 37 return CrPolicyIndicatorType.DEVICE_POLICY; |
| 38 case chrome.settingsPrivate.ControlledBy.EXTENSION: | |
| 39 return CrPolicyIndicatorType.EXTENSION; | |
| 39 } | 40 } |
| 40 } | 41 } |
| 41 return CrPolicyIndicatorType.NONE; | 42 return CrPolicyIndicatorType.NONE; |
| 42 }, | 43 }, |
| 43 }; | 44 }; |
| OLD | NEW |