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

Side by Side Diff: chrome/browser/resources/md_user_manager/create_profile.html

Issue 2950943002: MD Settings: Stop using IronMenuBehavior from cr-profile-avatar-selector-grid. (Closed)
Patch Set: Added comment. Created 3 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_user_manager/create_profile.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_user_manager/create_profile.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698