| 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/md_select_css.html"> | 10 <link rel="import" href="chrome://resources/html/md_select_css.html"> |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 <div id="message-container" visible$="[[isMessageVisble_]]"> | 141 <div id="message-container" visible$="[[isMessageVisble_]]"> |
| 142 <iron-icon icon="cr:warning"></iron-icon> | 142 <iron-icon icon="cr:warning"></iron-icon> |
| 143 <span id="message" inner-h-t-m-l="[[message_]]"></span> | 143 <span id="message" inner-h-t-m-l="[[message_]]"></span> |
| 144 </div> | 144 </div> |
| 145 <div class="container"> | 145 <div class="container"> |
| 146 <div id="title-bar">$i18n{createProfileTitle}</div> | 146 <div id="title-bar">$i18n{createProfileTitle}</div> |
| 147 <paper-input id="nameInput" value="{{profileName_}}" pattern=".*\S.*" | 147 <paper-input id="nameInput" value="{{profileName_}}" pattern=".*\S.*" |
| 148 no-label-float auto-validate> | 148 no-label-float auto-validate> |
| 149 </paper-input> | 149 </paper-input> |
| 150 <cr-profile-avatar-selector avatars="[[availableIcons_]]" | 150 <cr-profile-avatar-selector avatars="[[availableIcons_]]" |
| 151 selected-avatar-url="{{profileIconUrl_}}"> | 151 selected-avatar="{{selectedAvatar_}}"> |
| 152 </cr-profile-avatar-selector> | 152 </cr-profile-avatar-selector> |
| 153 <paper-checkbox id="createShortcutCheckbox" checked="{{createShortcut_}}" | 153 <paper-checkbox id="createShortcutCheckbox" checked="{{createShortcut_}}" |
| 154 hidden="[[!isProfileShortcutsEnabled_]]"> | 154 hidden="[[!isProfileShortcutsEnabled_]]"> |
| 155 $i18n{createDesktopShortcutLabel} | 155 $i18n{createDesktopShortcutLabel} |
| 156 </paper-checkbox> | 156 </paper-checkbox> |
| 157 <template is="dom-if" if="[[!isForceSigninEnabled_]]"> | 157 <template is="dom-if" if="[[!isForceSigninEnabled_]]"> |
| 158 <paper-checkbox id="makeSupervisedCheckbox" checked="{{isSupervised_}}"> | 158 <paper-checkbox id="makeSupervisedCheckbox" checked="{{isSupervised_}}"> |
| 159 $i18n{manageProfilesSupervisedSignedInLabel} | 159 $i18n{manageProfilesSupervisedSignedInLabel} |
| 160 </paper-checkbox> | 160 </paper-checkbox> |
| 161 <div id="supervised-user-container"> | 161 <div id="supervised-user-container"> |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 loadingSupervisedUsers_, | 202 loadingSupervisedUsers_, |
| 203 profileName_)]]"> | 203 profileName_)]]"> |
| 204 $i18n{createProfileConfirm} | 204 $i18n{createProfileConfirm} |
| 205 </paper-button> | 205 </paper-button> |
| 206 </div> | 206 </div> |
| 207 <import-supervised-user id="importUserPopup"></import-supervised-user> | 207 <import-supervised-user id="importUserPopup"></import-supervised-user> |
| 208 </div> | 208 </div> |
| 209 </template> | 209 </template> |
| 210 <script src="create_profile.js"></script> | 210 <script src="create_profile.js"></script> |
| 211 </dom-module> | 211 </dom-module> |
| OLD | NEW |