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

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

Issue 2793463002: MD Settings: Restore focus after closing various dialogs. (Closed)
Patch Set: Nits. Created 3 years, 8 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/cr_elements/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html"> 2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html">
3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/icon.html"> 5 <link rel="import" href="chrome://resources/html/icon.html">
6 <link rel="import" href="chrome://resources/html/polymer.html"> 6 <link rel="import" href="chrome://resources/html/polymer.html">
7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 <div id="manage-other-people-subpage-trigger" 295 <div id="manage-other-people-subpage-trigger"
296 class="settings-box" on-tap="onManageOtherPeople_" actionable> 296 class="settings-box" on-tap="onManageOtherPeople_" actionable>
297 <div class="start">$i18n{manageOtherPeople}</div> 297 <div class="start">$i18n{manageOtherPeople}</div>
298 <button class="subpage-arrow" is="paper-icon-button-light" 298 <button class="subpage-arrow" is="paper-icon-button-light"
299 aria-label="$i18n{manageOtherPeople}"></button> 299 aria-label="$i18n{manageOtherPeople}"></button>
300 </div> 300 </div>
301 301
302 <if expr="not chromeos"> 302 <if expr="not chromeos">
303 <div class="settings-box" on-tap="onImportDataTap_" actionable> 303 <div class="settings-box" on-tap="onImportDataTap_" actionable>
304 <div class="start">$i18n{importTitle}</div> 304 <div class="start">$i18n{importTitle}</div>
305 <button class="subpage-arrow" is="paper-icon-button-light" 305 <button id="importDataDialogTrigger" class="subpage-arrow"
306 aria-label="$i18n{importTitle}"></button> 306 is="paper-icon-button-light" aria-label="$i18n{importTitle}">
307 </button>
307 </div> 308 </div>
308 </if> 309 </if>
309 310
310 <template is="dom-if" if="[[profileManagesSupervisedUsers_]]"> 311 <template is="dom-if" if="[[profileManagesSupervisedUsers_]]">
311 <div id="manageSupervisedUsersContainer" class="settings-box two-line" 312 <div id="manageSupervisedUsersContainer" class="settings-box two-line"
312 on-tap="onManageSupervisedUsers_" actionable> 313 on-tap="onManageSupervisedUsers_" actionable>
313 <div class="start"> 314 <div class="start">
314 $i18n{manageSupervisedUsers} 315 $i18n{manageSupervisedUsers}
315 <div class="secondary" id="manageSupervisedUsersSecondary"> 316 <div class="secondary" id="manageSupervisedUsersSecondary">
316 $i18n{manageSupervisedUsersDescription} 317 $i18n{manageSupervisedUsersDescription}
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 <if expr="chromeos"> 430 <if expr="chromeos">
430 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> 431 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]">
431 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" 432 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"
432 on-close="onEasyUnlockTurnOffDialogClose_"> 433 on-close="onEasyUnlockTurnOffDialogClose_">
433 </easy-unlock-turn-off-dialog> 434 </easy-unlock-turn-off-dialog>
434 </template> 435 </template>
435 </if> 436 </if>
436 </template> 437 </template>
437 <script src="people_page.js"></script> 438 <script src="people_page.js"></script>
438 </dom-module> 439 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698