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-pages/iron-pages.h
tml"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h
tml"> |
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-checkbox/paper-ch
eckbox.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.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="/controls/settings_checkbox.html"> | 10 <link rel="import" href="/controls/settings_checkbox.html"> |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 hidden="[[!syncPrefs.autofillRegistered]]" | 116 hidden="[[!syncPrefs.autofillRegistered]]" |
117 disabled="[[shouldPaymentsCheckboxBeDisabled_( | 117 disabled="[[shouldPaymentsCheckboxBeDisabled_( |
118 syncPrefs.syncAllDataTypes, syncPrefs.autofillSynced)]]"> | 118 syncPrefs.syncAllDataTypes, syncPrefs.autofillSynced)]]"> |
119 $i18n{enablePaymentsIntegrationCheckboxLabel} | 119 $i18n{enablePaymentsIntegrationCheckboxLabel} |
120 <a href="$i18nRaw{autofillHelpURL}" target="_blank"> | 120 <a href="$i18nRaw{autofillHelpURL}" target="_blank"> |
121 $i18n{learnMore} | 121 $i18n{learnMore} |
122 </a> | 122 </a> |
123 </paper-checkbox> | 123 </paper-checkbox> |
124 </div> | 124 </div> |
125 | 125 |
126 <div class="settings-box two-line" on-tap="onManageSyncedDataTap_" | 126 <div class="settings-box two-line single-column" actionable |
127 actionable> | 127 on-tap="onManageSyncedDataTap_"> |
128 <div class="start"> | 128 <div>$i18n{manageSyncedDataTitle}</div> |
129 $i18n{manageSyncedDataTitle} | 129 <div class="secondary">$i18n{manageSyncedDataDescription}</div> |
130 <div class="secondary"> | |
131 $i18n{manageSyncedDataDescription} | |
132 </div> | |
133 </div> | |
134 </div> | 130 </div> |
135 | 131 |
136 <div class="settings-box two-line"> | 132 <div class="settings-box two-line single-column"> |
137 <div class="start"> | 133 <div>$i18n{encryptionOptionsTitle}</div> |
138 $i18n{encryptionOptionsTitle} | 134 <div class="secondary">$i18n{syncDataEncryptedText}</div> |
139 <div class="secondary"> | |
140 $i18n{syncDataEncryptedText} | |
141 </div> | |
142 </div> | |
143 </div> | 135 </div> |
144 | 136 |
145 <div id="encryptionRadioGroupContainer" class="list-frame" | 137 <div id="encryptionRadioGroupContainer" class="list-frame" |
146 hidden="[[syncPrefs.passphraseRequired]]"> | 138 hidden="[[syncPrefs.passphraseRequired]]"> |
147 <paper-radio-group | 139 <paper-radio-group |
148 selected="[[selectedEncryptionRadio_( | 140 selected="[[selectedEncryptionRadio_( |
149 syncPrefs.passphraseTypeIsCustom)]]" | 141 syncPrefs.passphraseTypeIsCustom)]]" |
150 on-paper-radio-group-changed="onEncryptionRadioSelectionChanged_"> | 142 on-paper-radio-group-changed="onEncryptionRadioSelectionChanged_"> |
151 <paper-radio-button name="encrypt-with-google" | 143 <paper-radio-button name="encrypt-with-google" |
152 class="list-item" disabled="[[syncPrefs.encryptAllData]]"> | 144 class="list-item" disabled="[[syncPrefs.encryptAllData]]"> |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 on-tap="onSubmitExistingPassphraseTap_" class="action-button"> | 191 on-tap="onSubmitExistingPassphraseTap_" class="action-button"> |
200 $i18n{submitPassphraseButton} | 192 $i18n{submitPassphraseButton} |
201 </paper-button> | 193 </paper-button> |
202 </div> | 194 </div> |
203 </template> | 195 </template> |
204 </div> | 196 </div> |
205 </iron-pages> | 197 </iron-pages> |
206 </template> | 198 </template> |
207 <script src="sync_page.js"></script> | 199 <script src="sync_page.js"></script> |
208 </dom-module> | 200 </dom-module> |
OLD | NEW |