| OLD | NEW |
| 1 <link rel="import" href="/import_supervised_user.html"> | 1 <link rel="import" href="/import_supervised_user.html"> |
| 2 <link rel="import" href="/profile_browser_proxy.html"> | 2 <link rel="import" href="/profile_browser_proxy.html"> |
| 3 <link rel="import" href="/shared_styles.html"> | 3 <link rel="import" href="/shared_styles.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/cr_profile_avatar_select
or/cr_profile_avatar_selector.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/cr_profile_avatar_select
or/cr_profile_avatar_selector.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 6 <link rel="import" href="chrome://resources/html/action_link.html"> | 6 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 7 <link rel="import" href="chrome://resources/html/cr.html"> | 7 <link rel="import" href="chrome://resources/html/cr.html"> |
| 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 9 <link rel="import" href="chrome://resources/html/polymer.html"> | 9 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 10 <link rel="import" href="chrome://resources/html/util.html"> | 10 <link rel="import" href="chrome://resources/html/util.html"> |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 attr-for-selected="data-user-index"> | 177 attr-for-selected="data-user-index"> |
| 178 <template is="dom-repeat" items="[[signedInUsers_]]"> | 178 <template is="dom-repeat" items="[[signedInUsers_]]"> |
| 179 <paper-item data-user-index$="[[index]]"> | 179 <paper-item data-user-index$="[[index]]"> |
| 180 [[item.username]] | 180 [[item.username]] |
| 181 </paper-item> | 181 </paper-item> |
| 182 </template> | 182 </template> |
| 183 </paper-listbox> | 183 </paper-listbox> |
| 184 </paper-dropdown-menu> | 184 </paper-dropdown-menu> |
| 185 <a id="import-user" is="action-link" on-tap="onImportUserTap_" | 185 <a id="import-user" is="action-link" on-tap="onImportUserTap_" |
| 186 hidden="[[isImportUserLinkHidden_(createInProgress_, | 186 hidden="[[isImportUserLinkHidden_(createInProgress_, |
| 187 loadingSupervisedUsers_, |
| 187 signedInUserIndex_)]]"> | 188 signedInUserIndex_)]]"> |
| 188 $i18n{importExistingSupervisedUserLink} | 189 $i18n{importExistingSupervisedUserLink} |
| 189 </a> | 190 </a> |
| 190 </template> | 191 </template> |
| 191 <div id="sign-in-howto-message" | 192 <div id="sign-in-howto-message" |
| 192 hidden="[[isSignedIn_(signedInUsers_)]]" | 193 hidden="[[isSignedIn_(signedInUsers_)]]" |
| 193 inner-h-t-m-l="[[i18nAllowIDAttr_('noSignedInUserMessage')]]"> | 194 inner-h-t-m-l="[[i18nAllowIDAttr_('noSignedInUserMessage')]]"> |
| 194 </div> | 195 </div> |
| 195 </template> | 196 </template> |
| 196 </div> | 197 </div> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 207 loadingSupervisedUsers_, | 208 loadingSupervisedUsers_, |
| 208 profileName_)]]"> | 209 profileName_)]]"> |
| 209 $i18n{createProfileConfirm} | 210 $i18n{createProfileConfirm} |
| 210 </paper-button> | 211 </paper-button> |
| 211 </div> | 212 </div> |
| 212 <import-supervised-user id="importUserPopup"></import-supervised-user> | 213 <import-supervised-user id="importUserPopup"></import-supervised-user> |
| 213 </div> | 214 </div> |
| 214 </template> | 215 </template> |
| 215 <script src="create_profile.js"></script> | 216 <script src="create_profile.js"></script> |
| 216 </dom-module> | 217 </dom-module> |
| OLD | NEW |