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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 <settings-change-picture></settings-change-picture> | 294 <settings-change-picture></settings-change-picture> |
295 </settings-subpage> | 295 </settings-subpage> |
296 </template> | 296 </template> |
297 </if> | 297 </if> |
298 <if expr="not chromeos"> | 298 <if expr="not chromeos"> |
299 <template is="dom-if" route-path="/manageProfile"> | 299 <template is="dom-if" route-path="/manageProfile"> |
300 <settings-subpage | 300 <settings-subpage |
301 associated-control="[[$$('#picture-subpage-trigger')]]" | 301 associated-control="[[$$('#picture-subpage-trigger')]]" |
302 page-title="$i18n{editPerson}"> | 302 page-title="$i18n{editPerson}"> |
303 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]" | 303 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]" |
304 profile-name="[[profileName_]]"> | 304 profile-name="[[profileName_]]" sync-status="[[syncStatus]]"> |
305 </settings-manage-profile> | 305 </settings-manage-profile> |
306 </settings-subpage> | 306 </settings-subpage> |
307 </template> | 307 </template> |
308 </if> | 308 </if> |
309 </settings-animated-pages> | 309 </settings-animated-pages> |
310 | 310 |
311 <dialog is="cr-dialog" id="disconnectDialog" on-close="onDisconnectClosed_"> | 311 <dialog is="cr-dialog" id="disconnectDialog" on-close="onDisconnectClosed_"> |
312 <div class="title">$i18n{syncDisconnectTitle}</div> | 312 <div class="title">$i18n{syncDisconnectTitle}</div> |
313 <div class="body"> | 313 <div class="body"> |
314 <div inner-h-t-m-l="[[getDisconnectExplanationHtml_(syncStatus.domain)]]
"> | 314 <div inner-h-t-m-l="[[getDisconnectExplanationHtml_(syncStatus.domain)]]
"> |
(...skipping 21 matching lines...) Expand all Loading... |
336 | 336 |
337 <if expr="chromeos"> | 337 <if expr="chromeos"> |
338 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 338 <template is="dom-if" if="[[easyUnlockEnabled_]]"> |
339 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 339 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> |
340 </easy-unlock-turn-off-dialog> | 340 </easy-unlock-turn-off-dialog> |
341 </template> | 341 </template> |
342 </if> | 342 </if> |
343 </template> | 343 </template> |
344 <script src="people_page.js"></script> | 344 <script src="people_page.js"></script> |
345 </dom-module> | 345 </dom-module> |
OLD | NEW |