| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 } | 101 } |
| 102 </style> | 102 </style> |
| 103 <settings-animated-pages id="pages" section="people"> | 103 <settings-animated-pages id="pages" section="people"> |
| 104 <neon-animatable route-path="default"> | 104 <neon-animatable route-path="default"> |
| 105 <div id="picture-subpage-trigger" class="settings-box first two-line"> | 105 <div id="picture-subpage-trigger" class="settings-box first two-line"> |
| 106 <template is="dom-if" if="[[syncStatus]]"> | 106 <template is="dom-if" if="[[syncStatus]]"> |
| 107 <div id="profile-icon" on-tap="onPictureTap_" actionable | 107 <div id="profile-icon" on-tap="onPictureTap_" actionable |
| 108 style="background-image: [[getIconImageset_(profileIconUrl_)]]"> | 108 style="background-image: [[getIconImageset_(profileIconUrl_)]]"> |
| 109 </div> | 109 </div> |
| 110 <if expr="not chromeos"> | 110 <if expr="not chromeos"> |
| 111 <div class="middle two-line" on-tap="onProfileNameTap_" actionable> | 111 <div class="middle two-line text-elide" on-tap="onProfileNameTap_" |
| 112 actionable> |
| 112 </if> | 113 </if> |
| 113 <if expr="chromeos"> | 114 <if expr="chromeos"> |
| 114 <div class="middle two-line" on-tap="onPictureTap_" actionable> | 115 <div class="middle two-line text-elide" on-tap="onPictureTap_" |
| 116 actionable> |
| 115 </if> | 117 </if> |
| 116 <div class="flex"> | 118 <div class="flex"> |
| 117 <span id="profile-name">[[profileName_]]</span> | 119 <span id="profile-name">[[profileName_]]</span> |
| 118 <div class="secondary" hidden="[[!syncStatus.signedIn]]"> | 120 <div class="secondary" hidden="[[!syncStatus.signedIn]]"> |
| 119 [[syncStatus.signedInUsername]] | 121 [[syncStatus.signedInUsername]] |
| 120 </div> | 122 </div> |
| 121 </div> | 123 </div> |
| 122 <button class="subpage-arrow" is="paper-icon-button-light"> | 124 <button class="subpage-arrow" is="paper-icon-button-light"> |
| 123 </button> | 125 </button> |
| 124 </div> | 126 </div> |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 <if expr="chromeos"> | 391 <if expr="chromeos"> |
| 390 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> | 392 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> |
| 391 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" | 393 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
| 392 on-close="onEasyUnlockTurnOffDialogClose_"> | 394 on-close="onEasyUnlockTurnOffDialogClose_"> |
| 393 </easy-unlock-turn-off-dialog> | 395 </easy-unlock-turn-off-dialog> |
| 394 </template> | 396 </template> |
| 395 </if> | 397 </if> |
| 396 </template> | 398 </template> |
| 397 <script src="people_page.js"></script> | 399 <script src="people_page.js"></script> |
| 398 </dom-module> | 400 </dom-module> |
| OLD | NEW |