| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys-behavior
/iron-a11y-keys-behavior.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys-behavior
/iron-a11y-keys-behavior.html"> |
| 4 <link rel="import" href="pref_control_behavior.html"> | 5 <link rel="import" href="pref_control_behavior.html"> |
| 5 <link rel="import" href="../prefs/pref_util.html"> | 6 <link rel="import" href="../prefs/pref_util.html"> |
| 6 <link rel="import" href="../settings_shared_css.html"> | 7 <link rel="import" href="../settings_shared_css.html"> |
| 7 | 8 |
| 8 <dom-module id="controlled-radio-button"> | 9 <dom-module id="controlled-radio-button"> |
| 9 <template> | 10 <template> |
| 10 <style include="settings-shared"> | 11 <style include="settings-shared"> |
| 11 :host { | 12 :host { |
| 12 --ink-to-circle: calc((var(--paper-radio-button-ink-size) - | 13 --ink-to-circle: calc((var(--paper-radio-button-ink-size) - |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 133 |
| 133 <template is="dom-if" if="[[showIndicator_(controlled_, name, pref.*)]]"> | 134 <template is="dom-if" if="[[showIndicator_(controlled_, name, pref.*)]]"> |
| 134 <cr-policy-pref-indicator pref="[[pref]]" on-tap="onIndicatorTap_" | 135 <cr-policy-pref-indicator pref="[[pref]]" on-tap="onIndicatorTap_" |
| 135 icon-aria-label="[[label]]"> | 136 icon-aria-label="[[label]]"> |
| 136 </cr-policy-pref-indicator> | 137 </cr-policy-pref-indicator> |
| 137 </template> | 138 </template> |
| 138 | 139 |
| 139 </template> | 140 </template> |
| 140 <script src="controlled_radio_button.js"></script> | 141 <script src="controlled_radio_button.js"></script> |
| 141 </dom-module> | 142 </dom-module> |
| OLD | NEW |