| 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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 page-title="$i18n{editPerson}"> | 362 page-title="$i18n{editPerson}"> |
| 363 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]" | 363 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]" |
| 364 profile-name="[[profileName_]]" sync-status="[[syncStatus]]"> | 364 profile-name="[[profileName_]]" sync-status="[[syncStatus]]"> |
| 365 </settings-manage-profile> | 365 </settings-manage-profile> |
| 366 </settings-subpage> | 366 </settings-subpage> |
| 367 </template> | 367 </template> |
| 368 </if> | 368 </if> |
| 369 </settings-animated-pages> | 369 </settings-animated-pages> |
| 370 | 370 |
| 371 <dialog is="cr-dialog" id="disconnectDialog" on-close="onDisconnectClosed_" | 371 <dialog is="cr-dialog" id="disconnectDialog" on-close="onDisconnectClosed_" |
| 372 ignore-popstate> | 372 close-text="$i18n{close}" ignore-popstate> |
| 373 <div class="title">$i18n{syncDisconnectTitle}</div> | 373 <div class="title">$i18n{syncDisconnectTitle}</div> |
| 374 <div class="body"> | 374 <div class="body"> |
| 375 <div inner-h-t-m-l="[[getDisconnectExplanationHtml_(syncStatus.domain)]]
"> | 375 <div inner-h-t-m-l="[[getDisconnectExplanationHtml_(syncStatus.domain)]]
"> |
| 376 </div> | 376 </div> |
| 377 </div> | 377 </div> |
| 378 <div class="button-container"> | 378 <div class="button-container"> |
| 379 <paper-button on-tap="onDisconnectCancel_" class="cancel-button"> | 379 <paper-button on-tap="onDisconnectCancel_" class="cancel-button"> |
| 380 $i18n{cancel} | 380 $i18n{cancel} |
| 381 </paper-button> | 381 </paper-button> |
| 382 <paper-button id="disconnectConfirm" class="action-button" | 382 <paper-button id="disconnectConfirm" class="action-button" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 <if expr="chromeos"> | 417 <if expr="chromeos"> |
| 418 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> | 418 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> |
| 419 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" | 419 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
| 420 on-close="onEasyUnlockTurnOffDialogClose_"> | 420 on-close="onEasyUnlockTurnOffDialogClose_"> |
| 421 </easy-unlock-turn-off-dialog> | 421 </easy-unlock-turn-off-dialog> |
| 422 </template> | 422 </template> |
| 423 </if> | 423 </if> |
| 424 </template> | 424 </template> |
| 425 <script src="people_page.js"></script> | 425 <script src="people_page.js"></script> |
| 426 </dom-module> | 426 </dom-module> |
| OLD | NEW |