| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape
r-radio-button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape
r-radio-button.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> |
| 9 <link rel="import" href="/people_page/sync_browser_proxy.html"> | 9 <link rel="import" href="/people_page/sync_browser_proxy.html"> |
| 10 <link rel="import" href="/route.html"> | 10 <link rel="import" href="/route.html"> |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 disabled="[[shouldPaymentsCheckboxBeDisabled_( | 141 disabled="[[shouldPaymentsCheckboxBeDisabled_( |
| 142 syncPrefs.syncAllDataTypes, syncPrefs.autofillSynced)]]"> | 142 syncPrefs.syncAllDataTypes, syncPrefs.autofillSynced)]]"> |
| 143 $i18n{enablePaymentsIntegrationCheckboxLabel} | 143 $i18n{enablePaymentsIntegrationCheckboxLabel} |
| 144 <a href="$i18nRaw{autofillHelpURL}" target="_blank" | 144 <a href="$i18nRaw{autofillHelpURL}" target="_blank" |
| 145 id="paymentLearnMore" on-tap="onLearnMoreTap_"> | 145 id="paymentLearnMore" on-tap="onLearnMoreTap_"> |
| 146 $i18n{learnMore} | 146 $i18n{learnMore} |
| 147 </a> | 147 </a> |
| 148 </paper-checkbox> | 148 </paper-checkbox> |
| 149 </div> | 149 </div> |
| 150 | 150 |
| 151 <div class="settings-box two-line single-column" actionable | 151 <div class="settings-box two-line" actionable |
| 152 on-tap="onManageSyncedDataTap_"> | 152 on-tap="onManageSyncedDataTap_"> |
| 153 <div>$i18n{manageSyncedDataTitle}</div> | 153 <div class="start"> |
| 154 <div class="secondary">$i18n{manageSyncedDataDescription}</div> | 154 $i18n{manageSyncedDataTitle} |
| 155 <div class="secondary">$i18n{manageSyncedDataDescription}</div> |
| 156 </div> |
| 157 <button class="icon-external" is="paper-icon-button-light"></button> |
| 155 </div> | 158 </div> |
| 156 | 159 |
| 157 <div class="settings-box two-line single-column"> | 160 <div class="settings-box two-line single-column"> |
| 158 <div>$i18n{encryptionOptionsTitle}</div> | 161 <div>$i18n{encryptionOptionsTitle}</div> |
| 159 <div class="secondary">$i18n{syncDataEncryptedText}</div> | 162 <div class="secondary">$i18n{syncDataEncryptedText}</div> |
| 160 </div> | 163 </div> |
| 161 | 164 |
| 162 <div id="encryptionRadioGroupContainer" class="list-frame" | 165 <div id="encryptionRadioGroupContainer" class="list-frame" |
| 163 hidden="[[syncPrefs.passphraseRequired]]"> | 166 hidden="[[syncPrefs.passphraseRequired]]"> |
| 164 <paper-radio-group | 167 <paper-radio-group |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 </div> | 238 </div> |
| 236 <div id="passphraseRecoverHint" class="list-item"> | 239 <div id="passphraseRecoverHint" class="list-item"> |
| 237 <span>$i18nRaw{passphraseRecover}</span> | 240 <span>$i18nRaw{passphraseRecover}</span> |
| 238 </div> | 241 </div> |
| 239 </div> | 242 </div> |
| 240 </template> | 243 </template> |
| 241 </div> | 244 </div> |
| 242 </template> | 245 </template> |
| 243 <script src="sync_page.js"></script> | 246 <script src="sync_page.js"></script> |
| 244 </dom-module> | 247 </dom-module> |
| OLD | NEW |