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

Side by Side Diff: chrome/browser/resources/settings/people_page/people_page.html

Issue 2062503002: Settings People Revamp: Add 'Manage Supervised Users' row (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 2 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial og.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial og.html">
7 <link rel="import" href="/controls/settings_checkbox.html"> 7 <link rel="import" href="/controls/settings_checkbox.html">
8 <link rel="import" href="/people_page/sync_page.html"> 8 <link rel="import" href="/people_page/sync_page.html">
9 <link rel="import" href="/people_page/profile_info_browser_proxy.html"> 9 <link rel="import" href="/people_page/profile_info_browser_proxy.html">
10 <link rel="import" href="/people_page/sync_browser_proxy.html"> 10 <link rel="import" href="/people_page/sync_browser_proxy.html">
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 </div> 203 </div>
204 </div> 204 </div>
205 </template> 205 </template>
206 </if> 206 </if>
207 207
208 <div class="settings-box"> 208 <div class="settings-box">
209 <paper-button class="primary-button" on-tap="onManageOtherPeople_"> 209 <paper-button class="primary-button" on-tap="onManageOtherPeople_">
210 $i18n{manageOtherPeople} 210 $i18n{manageOtherPeople}
211 </paper-button> 211 </paper-button>
212 </div> 212 </div>
213
214 <template is="dom-if" if=[[profileManagesSupervisedUsers_]]>
215 <div id="manageSupervisedUsersContainer" class="settings-box">
216 <paper-button class="primary-button"
217 on-tap="onManageSupervisedUsers_">
218 $i18n{manageSupervisedUsers}
219 </paper-button>
220 </div>
221 </template>
213 </neon-animatable> 222 </neon-animatable>
214 <template is="dom-if" name="sync"> 223 <template is="dom-if" name="sync">
215 <settings-subpage page-title="$i18n{syncPageTitle}"> 224 <settings-subpage page-title="$i18n{syncPageTitle}">
216 <settings-sync-page current-route="[[currentRoute]]"> 225 <settings-sync-page current-route="[[currentRoute]]">
217 </settings-sync-page> 226 </settings-sync-page>
218 </settings-subpage> 227 </settings-subpage>
219 </template> 228 </template>
220 <if expr="chromeos"> 229 <if expr="chromeos">
221 <template is="dom-if" name="users"> 230 <template is="dom-if" name="users">
222 <settings-subpage page-title="$i18n{usersPageTitle}"> 231 <settings-subpage page-title="$i18n{usersPageTitle}">
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 268
260 <if expr="chromeos"> 269 <if expr="chromeos">
261 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 270 <template is="dom-if" if="[[easyUnlockEnabled_]]">
262 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 271 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
263 </easy-unlock-turn-off-dialog> 272 </easy-unlock-turn-off-dialog>
264 </template> 273 </template>
265 </if> 274 </if>
266 </template> 275 </template>
267 <script src="people_page.js"></script> 276 <script src="people_page.js"></script>
268 </dom-module> 277 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698