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 | 6 * @fileoverview |
| 7 * 'settings-privacy-page' is the settings page containing privacy and | 7 * 'settings-privacy-page' is the settings page containing privacy and |
| 8 * security settings. | 8 * security settings. |
| 9 */ | 9 */ |
| 10 Polymer({ | 10 Polymer({ |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 166 loadTimeData.getString('contentSettings'); | 166 loadTimeData.getString('contentSettings'); |
| 167 }, | 167 }, |
| 168 | 168 |
| 169 // <if expr="chromeos"> | 169 // <if expr="chromeos"> |
| 170 /** @private */ | 170 /** @private */ |
| 171 onAdobeFlashStorageClicked_: function() { | 171 onAdobeFlashStorageClicked_: function() { |
| 172 window.open('https://www.macromedia.com/support/' + | 172 window.open('https://www.macromedia.com/support/' + |
| 173 'documentation/en/flashplayer/help/settings_manager07.html'); | 173 'documentation/en/flashplayer/help/settings_manager07.html'); |
| 174 }, | 174 }, |
| 175 // </if> | 175 // </if> |
| 176 | |
| 177 /** | |
| 178 * @param {boolean} value | |
| 179 * @param {string} trueLabel True label (for example, 'Allow DRM'). | |
| 180 * @param {string} falseLabel False label (for example, 'Blocked'). | |
| 181 * @private | |
| 182 */ | |
| 183 getStringTernary_: function(value, trueLabel, falseLabel) { | |
|
tommycli
2017/02/07 00:32:09
This function is available on all platforms becaus
dschuyler
2017/02/07 21:46:31
Is the name from the ? : ternary operator? Maybe a
tommycli
2017/02/07 22:00:07
Done.
| |
| 184 return value ? trueLabel : falseLabel; | |
| 185 }, | |
| 176 }); | 186 }); |
| OLD | NEW |