| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs
s.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs
s.html"> |
| 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo
g.html"> | 10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo
g.html"> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 <dom-module id="settings-privacy-page"> | 36 <dom-module id="settings-privacy-page"> |
| 37 <template> | 37 <template> |
| 38 <style include="settings-shared"> | 38 <style include="settings-shared"> |
| 39 </style> | 39 </style> |
| 40 <template is="dom-if" if="[[showClearBrowsingDataDialog_]]" restamp> | 40 <template is="dom-if" if="[[showClearBrowsingDataDialog_]]" restamp> |
| 41 <settings-clear-browsing-data-dialog prefs="{{prefs}}" | 41 <settings-clear-browsing-data-dialog prefs="{{prefs}}" |
| 42 on-close="onDialogClosed_"> | 42 on-close="onDialogClosed_"> |
| 43 </settings-clear-browsing-data-dialog> | 43 </settings-clear-browsing-data-dialog> |
| 44 </template> | 44 </template> |
| 45 <settings-animated-pages id="pages" section="privacy"> | 45 <settings-animated-pages id="pages" section="privacy" |
| 46 focus-config="[[focusConfig_]]"> |
| 46 <neon-animatable route-path="default"> | 47 <neon-animatable route-path="default"> |
| 47 <div class="settings-box first"> | 48 <div class="settings-box first"> |
| 48 <p class="privacy-explanation">$i18nRaw{improveBrowsingExperience}</p> | 49 <p class="privacy-explanation">$i18nRaw{improveBrowsingExperience}</p> |
| 49 </div> | 50 </div> |
| 50 <div class="settings-box"> | 51 <div class="settings-box"> |
| 51 <settings-toggle-button class="start" | 52 <settings-toggle-button class="start" |
| 52 pref="{{prefs.alternate_error_pages.enabled}}" | 53 pref="{{prefs.alternate_error_pages.enabled}}" |
| 53 label="$i18n{linkDoctorPref}"> | 54 label="$i18n{linkDoctorPref}"> |
| 54 </settings-toggle-button> | 55 </settings-toggle-button> |
| 55 </div> | 56 </div> |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> | 487 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> |
| 487 </category-setting-exceptions> | 488 </category-setting-exceptions> |
| 488 </template> | 489 </template> |
| 489 </if> | 490 </if> |
| 490 </settings-subpage> | 491 </settings-subpage> |
| 491 </template> | 492 </template> |
| 492 </settings-animated-pages> | 493 </settings-animated-pages> |
| 493 </template> | 494 </template> |
| 494 <script src="privacy_page.js"></script> | 495 <script src="privacy_page.js"></script> |
| 495 </dom-module> | 496 </dom-module> |
| OLD | NEW |