| 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-dropdown-menu/pap
er-dropdown-menu.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dropdown-menu/pap
er-dropdown-menu.html"> |
| 8 <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-input/paper-input
.html"> |
| 9 <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-button/pape
r-radio-button.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 hidden="[[!syncPrefs.autofillRegistered]]" | 117 hidden="[[!syncPrefs.autofillRegistered]]" |
| 118 disabled="[[shouldPaymentsCheckboxBeDisabled_( | 118 disabled="[[shouldPaymentsCheckboxBeDisabled_( |
| 119 syncPrefs.syncAllDataTypes, syncPrefs.autofillSynced)]]"> | 119 syncPrefs.syncAllDataTypes, syncPrefs.autofillSynced)]]"> |
| 120 $i18n{enablePaymentsIntegrationCheckboxLabel} | 120 $i18n{enablePaymentsIntegrationCheckboxLabel} |
| 121 <a href="$i18nRaw{autofillHelpURL}" target="_blank"> | 121 <a href="$i18nRaw{autofillHelpURL}" target="_blank"> |
| 122 $i18n{learnMore} | 122 $i18n{learnMore} |
| 123 </a> | 123 </a> |
| 124 </paper-checkbox> | 124 </paper-checkbox> |
| 125 </div> | 125 </div> |
| 126 | 126 |
| 127 <div class="settings-box two-line" on-tap="onManageSyncedDataTap_" | 127 <div class="settings-box two-line" on-tap="onManageSyncedDataTap_"> |
| 128 actionable> | |
| 129 <div class="start"> | 128 <div class="start"> |
| 130 $i18n{manageSyncedDataTitle} | 129 $i18n{manageSyncedDataTitle} |
| 131 <div class="secondary"> | 130 <div class="secondary"> |
| 132 $i18n{manageSyncedDataDescription} | 131 $i18n{manageSyncedDataDescription} |
| 133 </div> | 132 </div> |
| 134 </div> | 133 </div> |
| 135 </div> | 134 </div> |
| 136 | 135 |
| 137 <div class="settings-box two-line"> | 136 <div class="settings-box two-line"> |
| 138 <div class="start"> | 137 <div class="start"> |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 on-tap="onSubmitExistingPassphraseTap_" class="action-button"> | 199 on-tap="onSubmitExistingPassphraseTap_" class="action-button"> |
| 201 $i18n{submitPassphraseButton} | 200 $i18n{submitPassphraseButton} |
| 202 </paper-button> | 201 </paper-button> |
| 203 </div> | 202 </div> |
| 204 </template> | 203 </template> |
| 205 </div> | 204 </div> |
| 206 </iron-pages> | 205 </iron-pages> |
| 207 </template> | 206 </template> |
| 208 <script src="sync_page.js"></script> | 207 <script src="sync_page.js"></script> |
| 209 </dom-module> | 208 </dom-module> |
| OLD | NEW |