| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |