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

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

Issue 2052543002: MD Settings: disable <paper-radio-button>s inside of a <settings-radio-group> when controlled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: asdf Created 4 years, 6 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"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_be havior.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper -radio-group.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper -radio-group.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html">
4 <link rel="import" href="/controls/pref_control_behavior.html"> 5 <link rel="import" href="/controls/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="settings-radio-group"> 9 <dom-module id="settings-radio-group">
9 <style include="settings-shared"></style> 10 <style include="settings-shared"></style>
10 <template> 11 <template>
11 <div>[[label]]</div> 12 <div>[[label]]</div>
12 <paper-radio-group selected="{{selected}}"> 13 <paper-radio-group selected="{{selected}}">
13 <content></content> 14 <content></content>
14 </paper-radio-group> 15 </paper-radio-group>
15 </template> 16 </template>
16 <script src="settings_radio_group.js"></script> 17 <script src="settings_radio_group.js"></script>
17 </dom-module> 18 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698