| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 <a target="_blank" href="$i18n{syncLearnMoreUrl}"> | 158 <a target="_blank" href="$i18n{syncLearnMoreUrl}"> |
| 159 $i18n{learnMore} | 159 $i18n{learnMore} |
| 160 </a> | 160 </a> |
| 161 </div> | 161 </div> |
| 162 </div> | 162 </div> |
| 163 | 163 |
| 164 <if expr="not chromeos"> | 164 <if expr="not chromeos"> |
| 165 <template is="dom-if" if="[[syncStatus.domain]]"> | 165 <template is="dom-if" if="[[syncStatus.domain]]"> |
| 166 <div class="settings-box"> | 166 <div class="settings-box"> |
| 167 <div class="icon-container"> | 167 <div class="icon-container"> |
| 168 <iron-icon icon="cr:domain"></iron-icon> | 168 <iron-icon icon="cr20:domain"></iron-icon> |
| 169 </div> | 169 </div> |
| 170 <div class="middle" | 170 <div class="middle" |
| 171 inner-h-t-m-l="[[getDomainHtml_(syncStatus.domain)]]"> | 171 inner-h-t-m-l="[[getDomainHtml_(syncStatus.domain)]]"> |
| 172 </div> | 172 </div> |
| 173 </div> | 173 </div> |
| 174 </template> | 174 </template> |
| 175 </if> | 175 </if> |
| 176 | 176 |
| 177 <template is="dom-if" | 177 <template is="dom-if" |
| 178 if="[[isAdvancedSyncSettingsVisible_(syncStatus)]]"> | 178 if="[[isAdvancedSyncSettingsVisible_(syncStatus)]]"> |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 <if expr="chromeos"> | 402 <if expr="chromeos"> |
| 403 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> | 403 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> |
| 404 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" | 404 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
| 405 on-close="onEasyUnlockTurnOffDialogClose_"> | 405 on-close="onEasyUnlockTurnOffDialogClose_"> |
| 406 </easy-unlock-turn-off-dialog> | 406 </easy-unlock-turn-off-dialog> |
| 407 </template> | 407 </template> |
| 408 </if> | 408 </if> |
| 409 </template> | 409 </template> |
| 410 <script src="people_page.js"></script> | 410 <script src="people_page.js"></script> |
| 411 </dom-module> | 411 </dom-module> |
| OLD | NEW |