| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 | 2 |
| 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 6 <link rel="import" href="chrome://resources/html/assert.html"> | 6 <link rel="import" href="chrome://resources/html/assert.html"> |
| 7 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 7 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
| 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 9 <link rel="import" href="chrome://resources/html/icon.html"> | 9 <link rel="import" href="chrome://resources/html/icon.html"> |
| 10 <link rel="import" href="chrome://resources/html/util.html"> | 10 <link rel="import" href="chrome://resources/html/util.html"> |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 page-title="$i18n{changePictureTitle}"> | 270 page-title="$i18n{changePictureTitle}"> |
| 271 <settings-change-picture></settings-change-picture> | 271 <settings-change-picture></settings-change-picture> |
| 272 </settings-subpage> | 272 </settings-subpage> |
| 273 </template> | 273 </template> |
| 274 </if> | 274 </if> |
| 275 <if expr="not chromeos"> | 275 <if expr="not chromeos"> |
| 276 <template is="dom-if" route-path="/manageProfile"> | 276 <template is="dom-if" route-path="/manageProfile"> |
| 277 <settings-subpage | 277 <settings-subpage |
| 278 associated-control="[[$$('#picture-subpage-trigger')]]" | 278 associated-control="[[$$('#picture-subpage-trigger')]]" |
| 279 page-title="$i18n{editPerson}"> | 279 page-title="$i18n{editPerson}"> |
| 280 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]" | 280 <settings-manage-profile profile-name="[[profileName_]]" |
| 281 profile-name="[[profileName_]]" sync-status="[[syncStatus]]"> | 281 sync-status="[[syncStatus]]"> |
| 282 </settings-manage-profile> | 282 </settings-manage-profile> |
| 283 </settings-subpage> | 283 </settings-subpage> |
| 284 </template> | 284 </template> |
| 285 </if> | 285 </if> |
| 286 </settings-animated-pages> | 286 </settings-animated-pages> |
| 287 | 287 |
| 288 <template is="dom-if" if="[[showDisconnectDialog_]]" restamp> | 288 <template is="dom-if" if="[[showDisconnectDialog_]]" restamp> |
| 289 <dialog is="cr-dialog" id="disconnectDialog" | 289 <dialog is="cr-dialog" id="disconnectDialog" |
| 290 ignore-popstate ignore-enter-key | 290 ignore-popstate ignore-enter-key |
| 291 on-close="onDisconnectClosed_" close-text="$i18n{close}"> | 291 on-close="onDisconnectClosed_" close-text="$i18n{close}"> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 | 334 |
| 335 <template is="dom-if" if="[[showImportDataDialog_]]" restamp> | 335 <template is="dom-if" if="[[showImportDataDialog_]]" restamp> |
| 336 <settings-import-data-dialog prefs="{{prefs}}" | 336 <settings-import-data-dialog prefs="{{prefs}}" |
| 337 on-close="onImportDataDialogClosed_"> | 337 on-close="onImportDataDialogClosed_"> |
| 338 </settings-import-data-dialog> | 338 </settings-import-data-dialog> |
| 339 </template> | 339 </template> |
| 340 | 340 |
| 341 </template> | 341 </template> |
| 342 <script src="people_page.js"></script> | 342 <script src="people_page.js"></script> |
| 343 </dom-module> | 343 </dom-module> |
| OLD | NEW |