| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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> |
| OLD | NEW |