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

Side by Side Diff: chrome/browser/resources/settings/people_page/user_list.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/cr_scrollable_behavior.h tml"> 3 <link rel="import" href="chrome://resources/cr_elements/cr_scrollable_behavior.h tml">
2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 4 <link rel="import" href="chrome://resources/cr_elements/icons.html">
3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 5 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
4 <link rel="import" href="chrome://resources/html/polymer.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
7 <link rel="import" href="../route.html"> 8 <link rel="import" href="../route.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="settings-user-list"> 11 <dom-module id="settings-user-list">
11 <template> 12 <template>
12 <style include="settings-shared iron-flex"> 13 <style include="settings-shared iron-flex">
13 .user-list { 14 .user-list {
14 /* 4 users (the extra 1px is to account for the border-bottom) */ 15 /* 4 users (the extra 1px is to account for the border-bottom) */
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 <paper-icon-button icon="cr:clear" class="clear-icon" 48 <paper-icon-button icon="cr:clear" class="clear-icon"
48 on-tap="removeUser_" 49 on-tap="removeUser_"
49 hidden="[[shouldHideCloseButton_(disabled, item.isOwner)]]"> 50 hidden="[[shouldHideCloseButton_(disabled, item.isOwner)]]">
50 </paper-icon-button> 51 </paper-icon-button>
51 </div> 52 </div>
52 </template> 53 </template>
53 </div> 54 </div>
54 </template> 55 </template>
55 <script src="user_list.js"></script> 56 <script src="user_list.js"></script>
56 </dom-module> 57 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698