| 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/iron-a11y-keys/iron-a11
y-keys.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.html"> |
| 5 <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-button/paper-butt
on.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
| 7 <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-input/paper-input
.html"> |
| 8 <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-button/pape
r-radio-button.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> |
| 10 <link rel="import" href="sync_browser_proxy.html"> | 10 <link rel="import" href="sync_browser_proxy.html"> |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 </div> | 263 </div> |
| 264 | 264 |
| 265 <div id="encryptionDescription" hidden="[[syncPrefs.passphraseRequired]]" | 265 <div id="encryptionDescription" hidden="[[syncPrefs.passphraseRequired]]" |
| 266 class="settings-box two-line single-column"> | 266 class="settings-box two-line single-column"> |
| 267 <div>$i18n{encryptionOptionsTitle}</div> | 267 <div>$i18n{encryptionOptionsTitle}</div> |
| 268 <div class="secondary">$i18n{syncDataEncryptedText}</div> | 268 <div class="secondary">$i18n{syncDataEncryptedText}</div> |
| 269 </div> | 269 </div> |
| 270 | 270 |
| 271 <div id="encryptionRadioGroupContainer" class="list-frame" | 271 <div id="encryptionRadioGroupContainer" class="list-frame" |
| 272 hidden="[[syncPrefs.passphraseRequired]]"> | 272 hidden="[[syncPrefs.passphraseRequired]]"> |
| 273 <paper-radio-group | 273 <paper-radio-group disabled$="[[syncPrefs.encryptAllData]]" |
| 274 selected="[[selectedEncryptionRadio_( | 274 selected="[[selectedEncryptionRadio_( |
| 275 syncPrefs.passphraseTypeIsCustom)]]" | 275 syncPrefs.passphraseTypeIsCustom)]]" |
| 276 on-paper-radio-group-changed="onEncryptionRadioSelectionChanged_"> | 276 on-paper-radio-group-changed="onEncryptionRadioSelectionChanged_"> |
| 277 <paper-radio-button name="encrypt-with-google" | 277 <paper-radio-button name="encrypt-with-google" |
| 278 class="list-item" disabled="[[syncPrefs.encryptAllData]]"> | 278 class="list-item" disabled="[[syncPrefs.encryptAllData]]"> |
| 279 $i18n{encryptWithGoogleCredentialsLabel} | 279 $i18n{encryptWithGoogleCredentialsLabel} |
| 280 </paper-radio-button> | 280 </paper-radio-button> |
| 281 <paper-radio-button name="encrypt-with-passphrase" | 281 <paper-radio-button name="encrypt-with-passphrase" |
| 282 class="list-item" disabled="[[syncPrefs.encryptAllData]]"> | 282 class="list-item" disabled="[[syncPrefs.encryptAllData]]"> |
| 283 <template is="dom-if" if="[[syncPrefs.fullEncryptionBody]]"> | 283 <template is="dom-if" if="[[syncPrefs.fullEncryptionBody]]"> |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 confirmation_)]]"> | 321 confirmation_)]]"> |
| 322 $i18n{save} | 322 $i18n{save} |
| 323 </paper-button> | 323 </paper-button> |
| 324 </div> | 324 </div> |
| 325 </div> | 325 </div> |
| 326 </template> | 326 </template> |
| 327 </div> | 327 </div> |
| 328 </template> | 328 </template> |
| 329 <script src="sync_page.js"></script> | 329 <script src="sync_page.js"></script> |
| 330 </dom-module> | 330 </dom-module> |
| OLD | NEW |