| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 $i18n{personalizeGoogleServicesTitle} | 255 $i18n{personalizeGoogleServicesTitle} |
| 256 <div class="secondary" id="activityControlsSecondary"> | 256 <div class="secondary" id="activityControlsSecondary"> |
| 257 $i18n{personalizeGoogleServicesText} | 257 $i18n{personalizeGoogleServicesText} |
| 258 </div> | 258 </div> |
| 259 </div> | 259 </div> |
| 260 <button class="icon-external" is="paper-icon-button-light" | 260 <button class="icon-external" is="paper-icon-button-light" |
| 261 aria-label="$i18n{personalizeGoogleServicesTitle}" | 261 aria-label="$i18n{personalizeGoogleServicesTitle}" |
| 262 aria-describedby="activityControlsSecondary"></button> | 262 aria-describedby="activityControlsSecondary"></button> |
| 263 </div> | 263 </div> |
| 264 | 264 |
| 265 <div class="settings-box two-line" actionable | 265 <div class="settings-box" actionable on-tap="onManageSyncedDataTap_"> |
| 266 on-tap="onManageSyncedDataTap_"> | |
| 267 <div class="start"> | 266 <div class="start"> |
| 268 $i18n{manageSyncedDataTitle} | 267 $i18n{manageSyncedDataTitle} |
| 269 <div class="secondary" id="manageSyncedDataSecondary"> | |
| 270 $i18n{manageSyncedDataDescription} | |
| 271 </div> | |
| 272 </div> | 268 </div> |
| 273 <button class="icon-external" is="paper-icon-button-light" | 269 <button class="icon-external" is="paper-icon-button-light" |
| 274 aria-label="$i18n{manageSyncedDataTitle}" | 270 aria-label="$i18n{manageSyncedDataTitle}"></button> |
| 275 aria-describedby="manageSyncedDataSecondary"></button> | |
| 276 </div> | 271 </div> |
| 277 | 272 |
| 278 <div id="encryptionDescription" hidden="[[syncPrefs.passphraseRequired]]" | 273 <div id="encryptionDescription" hidden="[[syncPrefs.passphraseRequired]]" |
| 279 class="settings-box two-line single-column"> | 274 class="settings-box two-line single-column"> |
| 280 <div>$i18n{encryptionOptionsTitle}</div> | 275 <div>$i18n{encryptionOptionsTitle}</div> |
| 281 <div class="secondary">$i18n{syncDataEncryptedText}</div> | 276 <div class="secondary">$i18n{syncDataEncryptedText}</div> |
| 282 </div> | 277 </div> |
| 283 | 278 |
| 284 <div id="encryptionRadioGroupContainer" class="list-frame" | 279 <div id="encryptionRadioGroupContainer" class="list-frame" |
| 285 hidden="[[syncPrefs.passphraseRequired]]"> | 280 hidden="[[syncPrefs.passphraseRequired]]"> |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 confirmation_)]]"> | 329 confirmation_)]]"> |
| 335 $i18n{save} | 330 $i18n{save} |
| 336 </paper-button> | 331 </paper-button> |
| 337 </div> | 332 </div> |
| 338 </div> | 333 </div> |
| 339 </template> | 334 </template> |
| 340 </div> | 335 </div> |
| 341 </template> | 336 </template> |
| 342 <script src="sync_page.js"></script> | 337 <script src="sync_page.js"></script> |
| 343 </dom-module> | 338 </dom-module> |
| OLD | NEW |