| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 </div> | 355 </div> |
| 356 </dialog> | 356 </dialog> |
| 357 | 357 |
| 358 <template is="dom-if" if="[[showImportDataDialog_]]" restamp> | 358 <template is="dom-if" if="[[showImportDataDialog_]]" restamp> |
| 359 <settings-import-data-dialog prefs="{{prefs}}" | 359 <settings-import-data-dialog prefs="{{prefs}}" |
| 360 on-close="onImportDataDialogClosed_"> | 360 on-close="onImportDataDialogClosed_"> |
| 361 </settings-import-data-dialog> | 361 </settings-import-data-dialog> |
| 362 </template> | 362 </template> |
| 363 | 363 |
| 364 <if expr="chromeos"> | 364 <if expr="chromeos"> |
| 365 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 365 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> |
| 366 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 366 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
| 367 on-close="onEasyUnlockTurnOffDialogClose_"> |
| 367 </easy-unlock-turn-off-dialog> | 368 </easy-unlock-turn-off-dialog> |
| 368 </template> | 369 </template> |
| 369 </if> | 370 </if> |
| 370 </template> | 371 </template> |
| 371 <script src="people_page.js"></script> | 372 <script src="people_page.js"></script> |
| 372 </dom-module> | 373 </dom-module> |
| OLD | NEW |