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

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

Issue 2664503004: MD Settings: Make all HTML import href's relative. (Closed)
Patch Set: resolve more conflicts Created 3 years, 10 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/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html">
3 <link rel="import" href="/controls/settings_boolean_control_behavior.html"> 3 <link rel="import" href="settings_boolean_control_behavior.html">
4 <link rel="import" href="/settings_shared_css.html"> 4 <link rel="import" href="../settings_shared_css.html">
5 5
6 <dom-module id="settings-toggle-button"> 6 <dom-module id="settings-toggle-button">
7 <template> 7 <template>
8 <style include="settings-shared"> 8 <style include="settings-shared">
9 :host([elide-label]), 9 :host([elide-label]),
10 :host([elide-label]) #outerRow, 10 :host([elide-label]) #outerRow,
11 :host([elide-label]) #outerRow > div.flex { 11 :host([elide-label]) #outerRow > div.flex {
12 min-width: 0; 12 min-width: 0;
13 } 13 }
14 14
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 <template is="dom-if" if="[[pref.controlledBy]]"> 46 <template is="dom-if" if="[[pref.controlledBy]]">
47 <cr-policy-pref-indicator pref="[[pref]]"></cr-policy-pref-indicator> 47 <cr-policy-pref-indicator pref="[[pref]]"></cr-policy-pref-indicator>
48 </template> 48 </template>
49 <paper-toggle-button id="control" checked="{{checked}}" 49 <paper-toggle-button id="control" checked="{{checked}}"
50 disabled="[[controlDisabled_(disabled, pref)]]"> 50 disabled="[[controlDisabled_(disabled, pref)]]">
51 </paper-toggle-button> 51 </paper-toggle-button>
52 </div> 52 </div>
53 </template> 53 </template>
54 <script src="settings_toggle_button.js"></script> 54 <script src="settings_toggle_button.js"></script>
55 </dom-module> 55 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698