| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 3 <link rel="import" href="chrome://resources/html/icon.html"> | 3 <link rel="import" href="chrome://resources/html/icon.html"> |
| 4 <link rel="import" href="chrome://resources/html/polymer.html"> | 4 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 on-tap="onEasyUnlockTurnOffTap_"> | 249 on-tap="onEasyUnlockTurnOffTap_"> |
| 250 $i18n{easyUnlockTurnOffButton} | 250 $i18n{easyUnlockTurnOffButton} |
| 251 </paper-button> | 251 </paper-button> |
| 252 </template> | 252 </template> |
| 253 </div> | 253 </div> |
| 254 </div> | 254 </div> |
| 255 </template> | 255 </template> |
| 256 </if> | 256 </if> |
| 257 | 257 |
| 258 <div id="manage-other-people-subpage-trigger" | 258 <div id="manage-other-people-subpage-trigger" |
| 259 class="settings-box two-line" on-tap="onManageOtherPeople_" | 259 class="settings-box" on-tap="onManageOtherPeople_" actionable> |
| 260 actionable> | 260 <div class="start">$i18n{manageOtherPeople}</div> |
| 261 <div class="start"> | |
| 262 $i18n{manageOtherPeople} | |
| 263 <div class="secondary">$i18n{manageOtherPeopleDescription}</div> | |
| 264 </div> | |
| 265 <button class="subpage-arrow" is="paper-icon-button-light"></button> | 261 <button class="subpage-arrow" is="paper-icon-button-light"></button> |
| 266 </div> | 262 </div> |
| 267 | 263 |
| 268 <if expr="not chromeos"> | 264 <if expr="not chromeos"> |
| 269 <div class="settings-box" on-tap="onImportDataTap_" actionable> | 265 <div class="settings-box" on-tap="onImportDataTap_" actionable> |
| 270 <div class="start">$i18n{importTitle}</div> | 266 <div class="start">$i18n{importTitle}</div> |
| 271 <button class="subpage-arrow" is="paper-icon-button-light"></button> | 267 <button class="subpage-arrow" is="paper-icon-button-light"></button> |
| 272 </div> | 268 </div> |
| 273 </if> | 269 </if> |
| 274 | 270 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 | 363 |
| 368 <if expr="chromeos"> | 364 <if expr="chromeos"> |
| 369 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 365 <template is="dom-if" if="[[easyUnlockEnabled_]]"> |
| 370 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 366 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> |
| 371 </easy-unlock-turn-off-dialog> | 367 </easy-unlock-turn-off-dialog> |
| 372 </template> | 368 </template> |
| 373 </if> | 369 </if> |
| 374 </template> | 370 </template> |
| 375 <script src="people_page.js"></script> | 371 <script src="people_page.js"></script> |
| 376 </dom-module> | 372 </dom-module> |
| OLD | NEW |