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

Side by Side Diff: chrome/browser/resources/settings/controls/settings_checkbox.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/paper-checkbox/paper-ch eckbox.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
4 <link rel="import" href="settings_boolean_control_behavior.html"> 5 <link rel="import" href="settings_boolean_control_behavior.html">
5 <link rel="import" href="../settings_shared_css.html"> 6 <link rel="import" href="../settings_shared_css.html">
6 7
7 <dom-module id="settings-checkbox"> 8 <dom-module id="settings-checkbox">
8 <template> 9 <template>
9 <style include="settings-shared"> 10 <style include="settings-shared">
10 #outerRow { 11 #outerRow {
11 align-items: center; 12 align-items: center;
12 display: flex; 13 display: flex;
(...skipping 29 matching lines...) Expand all
42 <div class="secondary label">[[subLabel]]</div> 43 <div class="secondary label">[[subLabel]]</div>
43 </paper-checkbox> 44 </paper-checkbox>
44 <template is="dom-if" if="[[pref.controlledBy]]"> 45 <template is="dom-if" if="[[pref.controlledBy]]">
45 <cr-policy-pref-indicator pref="[[pref]]" icon-aria-label="[[label]]"> 46 <cr-policy-pref-indicator pref="[[pref]]" icon-aria-label="[[label]]">
46 </cr-policy-pref-indicator> 47 </cr-policy-pref-indicator>
47 </template> 48 </template>
48 </div> 49 </div>
49 </template> 50 </template>
50 <script src="settings_checkbox.js"></script> 51 <script src="settings_checkbox.js"></script>
51 </dom-module> 52 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698