| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 Polymer({ | 5 Polymer({ |
| 6 is: 'controlled-button', | 6 is: 'controlled-button', |
| 7 | 7 |
| 8 behaviors: [CrPolicyPrefBehavior, PrefControlBehavior], | 8 behaviors: [CrPolicyPrefBehavior, PrefControlBehavior], |
| 9 | 9 |
| 10 properties: { | 10 properties: { |
| 11 /** @private */ | 11 /** @private */ |
| 12 controlled_: { | 12 controlled_: { |
| 13 type: Boolean, | 13 type: Boolean, |
| 14 computed: 'computeControlled_(pref.*)', | 14 computed: 'computeControlled_(pref.*)', |
| 15 reflectToAttribute: true, | 15 reflectToAttribute: true, |
| 16 }, | 16 }, |
| 17 }, | 17 }, |
| 18 | 18 |
| 19 /** | 19 /** |
| 20 * @return {boolean} Whether the button is disabled. | 20 * @return {boolean} Whether the button is disabled. |
| 21 * @private | 21 * @private |
| 22 */ | 22 */ |
| 23 computeControlled_: function() { | 23 computeControlled_: function() { |
| 24 return this.isPrefPolicyControlled(assert(this.pref)); | 24 return this.pref.enforcement == chrome.settingsPrivate.Enforcement.ENFORCED; |
| 25 }, | 25 }, |
| 26 | 26 |
| 27 /** | 27 /** |
| 28 * @param {!Event} e | 28 * @param {!Event} e |
| 29 * @private | 29 * @private |
| 30 */ | 30 */ |
| 31 onIndicatorTap_: function(e) { | 31 onIndicatorTap_: function(e) { |
| 32 // Disallow <controlled-button on-tap="..."> when controlled. | 32 // Disallow <controlled-button on-tap="..."> when controlled. |
| 33 e.preventDefault(); | 33 e.preventDefault(); |
| 34 e.stopPropagation(); | 34 e.stopPropagation(); |
| 35 }, | 35 }, |
| 36 }); | 36 }); |
| OLD | NEW |