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

Side by Side Diff: chrome/browser/resources/settings/controls/controlled_radio_button.html

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 years, 7 months 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 <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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698