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

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

Issue 2597013002: Run clang-format on ui/webui/resources (Closed)
Patch Set: remove cr_shared_menu.js Created 4 years 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 * @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; 17 pref.controlledBy != chrome.settingsPrivate.ControlledBy.EXTENSION;
18 }, 18 },
19 19
20 /** 20 /**
21 * @param {chrome.settingsPrivate.ControlledBy} controlledBy 21 * @param {chrome.settingsPrivate.ControlledBy} controlledBy
22 * @param {chrome.settingsPrivate.Enforcement} enforcement 22 * @param {chrome.settingsPrivate.Enforcement} enforcement
23 * @return {CrPolicyIndicatorType} The indicator type based on |controlledBy| 23 * @return {CrPolicyIndicatorType} The indicator type based on |controlledBy|
24 * and |enforcement|. 24 * and |enforcement|.
25 */ 25 */
26 getIndicatorType: function(controlledBy, enforcement) { 26 getIndicatorType: function(controlledBy, enforcement) {
27 if (enforcement == chrome.settingsPrivate.Enforcement.RECOMMENDED) 27 if (enforcement == chrome.settingsPrivate.Enforcement.RECOMMENDED)
28 return CrPolicyIndicatorType.RECOMMENDED; 28 return CrPolicyIndicatorType.RECOMMENDED;
29 if (enforcement == chrome.settingsPrivate.Enforcement.ENFORCED) { 29 if (enforcement == chrome.settingsPrivate.Enforcement.ENFORCED) {
30 switch (controlledBy) { 30 switch (controlledBy) {
31 case chrome.settingsPrivate.ControlledBy.PRIMARY_USER: 31 case chrome.settingsPrivate.ControlledBy.PRIMARY_USER:
32 return CrPolicyIndicatorType.PRIMARY_USER; 32 return CrPolicyIndicatorType.PRIMARY_USER;
33 case chrome.settingsPrivate.ControlledBy.OWNER: 33 case chrome.settingsPrivate.ControlledBy.OWNER:
34 return CrPolicyIndicatorType.OWNER; 34 return CrPolicyIndicatorType.OWNER;
35 case chrome.settingsPrivate.ControlledBy.USER_POLICY: 35 case chrome.settingsPrivate.ControlledBy.USER_POLICY:
36 return CrPolicyIndicatorType.USER_POLICY; 36 return CrPolicyIndicatorType.USER_POLICY;
37 case chrome.settingsPrivate.ControlledBy.DEVICE_POLICY: 37 case chrome.settingsPrivate.ControlledBy.DEVICE_POLICY:
38 return CrPolicyIndicatorType.DEVICE_POLICY; 38 return CrPolicyIndicatorType.DEVICE_POLICY;
39 } 39 }
40 } 40 }
41 return CrPolicyIndicatorType.NONE; 41 return CrPolicyIndicatorType.NONE;
42 }, 42 },
43 }; 43 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698