| 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 associated-control="[[$$('#picture-subpage-trigger')]]" | 307 associated-control="[[$$('#picture-subpage-trigger')]]" |
| 308 page-title="$i18n{editPerson}"> | 308 page-title="$i18n{editPerson}"> |
| 309 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]" | 309 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]" |
| 310 profile-name="[[profileName_]]" sync-status="[[syncStatus]]"> | 310 profile-name="[[profileName_]]" sync-status="[[syncStatus]]"> |
| 311 </settings-manage-profile> | 311 </settings-manage-profile> |
| 312 </settings-subpage> | 312 </settings-subpage> |
| 313 </template> | 313 </template> |
| 314 </if> | 314 </if> |
| 315 </settings-animated-pages> | 315 </settings-animated-pages> |
| 316 | 316 |
| 317 <dialog is="cr-dialog" id="disconnectDialog" on-close="onDisconnectClosed_"> | 317 <dialog is="cr-dialog" id="disconnectDialog" on-close="onDisconnectClosed_" |
| 318 ignore-popstate> |
| 318 <div class="title">$i18n{syncDisconnectTitle}</div> | 319 <div class="title">$i18n{syncDisconnectTitle}</div> |
| 319 <div class="body"> | 320 <div class="body"> |
| 320 <div inner-h-t-m-l="[[getDisconnectExplanationHtml_(syncStatus.domain)]]
"> | 321 <div inner-h-t-m-l="[[getDisconnectExplanationHtml_(syncStatus.domain)]]
"> |
| 321 </div> | 322 </div> |
| 322 <if expr="(not chromeos and is_posix) or is_win or is_macosx"> | 323 <if expr="(not chromeos and is_posix) or is_win or is_macosx"> |
| 323 <paper-checkbox id="deleteProfile" hidden=[[syncStatus.domain]]> | 324 <paper-checkbox id="deleteProfile" hidden=[[syncStatus.domain]]> |
| 324 $i18n{syncDisconnectDeleteProfile} | 325 $i18n{syncDisconnectDeleteProfile} |
| 325 </paper-checkbox> | 326 </paper-checkbox> |
| 326 </if> | 327 </if> |
| 327 </div> | 328 </div> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 342 | 343 |
| 343 <if expr="chromeos"> | 344 <if expr="chromeos"> |
| 344 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 345 <template is="dom-if" if="[[easyUnlockEnabled_]]"> |
| 345 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 346 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> |
| 346 </easy-unlock-turn-off-dialog> | 347 </easy-unlock-turn-off-dialog> |
| 347 </template> | 348 </template> |
| 348 </if> | 349 </if> |
| 349 </template> | 350 </template> |
| 350 <script src="people_page.js"></script> | 351 <script src="people_page.js"></script> |
| 351 </dom-module> | 352 </dom-module> |
| OLD | NEW |