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

Side by Side Diff: chrome/browser/resources/settings/controls/controlled_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/html/assert.html"> 3 <link rel="import" href="chrome://resources/html/assert.html">
2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_be havior.html"> 5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_be havior.html">
5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in dicator.html"> 6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in dicator.html">
6 <link rel="import" href="pref_control_behavior.html"> 7 <link rel="import" href="pref_control_behavior.html">
7 <link rel="import" href="../i18n_setup.html"> 8 <link rel="import" href="../i18n_setup.html">
8 <link rel="import" href="../settings_shared_css.html"> 9 <link rel="import" href="../settings_shared_css.html">
9 10
10 <dom-module id="controlled-button"> 11 <dom-module id="controlled-button">
11 <template> 12 <template>
12 <style include="settings-shared"> 13 <style include="settings-shared">
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 47
47 <template is="dom-if" if="[[hasPrefPolicyIndicator(pref.*)]]" restamp> 48 <template is="dom-if" if="[[hasPrefPolicyIndicator(pref.*)]]" restamp>
48 <cr-policy-pref-indicator pref="[[pref]]" on-tap="onIndicatorTap_" 49 <cr-policy-pref-indicator pref="[[pref]]" on-tap="onIndicatorTap_"
49 icon-aria-label="[[label]]"> 50 icon-aria-label="[[label]]">
50 </cr-policy-pref-indicator> 51 </cr-policy-pref-indicator>
51 </template> 52 </template>
52 53
53 </template> 54 </template>
54 <script src="controlled_button.js"></script> 55 <script src="controlled_button.js"></script>
55 </dom-module> 56 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698