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

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

Issue 2520573002: MD Settings: implement support for extension-controlled startup URLs (Closed)
Patch Set: fix closure? Created 4 years, 1 month 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"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html">
3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_be havior.html">
4 <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">
5 <link rel="import" href="/controls/pref_control_behavior.html"> 4 <link rel="import" href="/controls/pref_control_behavior.html">
6 <link rel="import" href="/prefs/pref_util.html"> 5 <link rel="import" href="/prefs/pref_util.html">
7 <link rel="import" href="/settings_shared_css.html"> 6 <link rel="import" href="/settings_shared_css.html">
8 7
9 <dom-module id="controlled-radio-button"> 8 <dom-module id="controlled-radio-button">
10 <template> 9 <template>
11 <style include="settings-shared"> 10 <style include="settings-shared">
12 :host { 11 :host {
13 align-items: center; 12 align-items: center;
(...skipping 21 matching lines...) Expand all
35 </paper-radio-button> 34 </paper-radio-button>
36 35
37 <template is="dom-if" if="[[showIndicator_(controlled_, name, pref)]]"> 36 <template is="dom-if" if="[[showIndicator_(controlled_, name, pref)]]">
38 <cr-policy-pref-indicator pref="[[pref]]" on-tap="onIndicatorTap_"> 37 <cr-policy-pref-indicator pref="[[pref]]" on-tap="onIndicatorTap_">
39 </cr-policy-pref-indicator> 38 </cr-policy-pref-indicator>
40 </template> 39 </template>
41 40
42 </template> 41 </template>
43 <script src="/controls/controlled_radio_button.js"></script> 42 <script src="/controls/controlled_radio_button.js"></script>
44 </dom-module> 43 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698