| 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/policy/cr_policy_vars_cs
s.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs
s.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-flex-layout/iron-f
lex-layout-classes.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 6 <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-button/paper-butt
on.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 8 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog.
html"> | 8 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog.
html"> |
| 9 <link rel="import" href="/controls/settings_toggle_button.html"> | 9 <link rel="import" href="/controls/settings_toggle_button.html"> |
| 10 <link rel="import" href="/lifetime_browser_proxy.html"> | 10 <link rel="import" href="/lifetime_browser_proxy.html"> |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 <neon-animatable route-path="default"> | 60 <neon-animatable route-path="default"> |
| 61 <div class="settings-box first"> | 61 <div class="settings-box first"> |
| 62 <p class="privacy-explanation">$i18nRaw{improveBrowsingExperience}</p> | 62 <p class="privacy-explanation">$i18nRaw{improveBrowsingExperience}</p> |
| 63 </div> | 63 </div> |
| 64 <div class="settings-box"> | 64 <div class="settings-box"> |
| 65 <settings-toggle-button class="start" | 65 <settings-toggle-button class="start" |
| 66 pref="{{prefs.alternate_error_pages.enabled}}" | 66 pref="{{prefs.alternate_error_pages.enabled}}" |
| 67 label="$i18n{linkDoctorPref}"> | 67 label="$i18n{linkDoctorPref}"> |
| 68 </settings-toggle-button> | 68 </settings-toggle-button> |
| 69 </div> | 69 </div> |
| 70 <div class="settings-box"> | 70 <div class="settings-box" hidden="[[!pageVisibility.searchPrediction]]"> |
| 71 <settings-toggle-button class="start" | 71 <settings-toggle-button class="start" |
| 72 pref="{{prefs.search.suggest_enabled}}" | 72 pref="{{prefs.search.suggest_enabled}}" |
| 73 label="$i18n{searchSuggestPref}" | 73 label="$i18n{searchSuggestPref}"> |
| 74 hidden="[[!pageVisibility.searchPrediction]]"> | 74 </settings-toggle-button> |
| 75 </div> |
| 76 <div class="settings-box" |
| 77 hidden="[[!pageVisibility.networkPrediction]]"> |
| 78 <settings-toggle-button class="start" |
| 79 pref="{{prefs.net.network_prediction_options}}" |
| 80 label="$i18n{networkPredictionEnabled}"> |
| 75 </settings-toggle-button> | 81 </settings-toggle-button> |
| 76 </div> | 82 </div> |
| 77 <div class="settings-box"> | 83 <div class="settings-box"> |
| 78 <settings-toggle-button class="start" | |
| 79 pref="{{prefs.net.network_prediction_options}}" | |
| 80 label="$i18n{networkPredictionEnabled}" | |
| 81 hidden="[[!pageVisibility.networkPrediction]]"> | |
| 82 </settings-toggle-button> | |
| 83 </div> | |
| 84 <div class="settings-box"> | |
| 85 <div class="start">$i18n{safeBrowsingEnableExtendedReporting}</div> | 84 <div class="start">$i18n{safeBrowsingEnableExtendedReporting}</div> |
| 86 <paper-toggle-button id="safeBrowsingExtendedReportingControl" | 85 <paper-toggle-button id="safeBrowsingExtendedReportingControl" |
| 87 on-tap="onSafeBrowsingExtendedReportingControlTap_" | 86 on-tap="onSafeBrowsingExtendedReportingControlTap_" |
| 88 checked="[[safeBrowsingExtendedReportingEnabled_]]"> | 87 checked="[[safeBrowsingExtendedReportingEnabled_]]"> |
| 89 </paper-toggle-button> | 88 </paper-toggle-button> |
| 90 </div> | 89 </div> |
| 91 <div class="settings-box"> | 90 <div class="settings-box"> |
| 92 <settings-toggle-button class="start" | 91 <settings-toggle-button class="start" |
| 93 pref="{{prefs.safebrowsing.enabled}}" | 92 pref="{{prefs.safebrowsing.enabled}}" |
| 94 label="$i18n{safeBrowsingEnableProtection}"> | 93 label="$i18n{safeBrowsingEnableProtection}"> |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 $i18n{siteSettingsCookieRemoveAll} | 400 $i18n{siteSettingsCookieRemoveAll} |
| 402 </paper-button> | 401 </paper-button> |
| 403 <site-data-details-subpage page-title="{{pageTitle}}"> | 402 <site-data-details-subpage page-title="{{pageTitle}}"> |
| 404 </site-data-details-subpage> | 403 </site-data-details-subpage> |
| 405 </settings-subpage> | 404 </settings-subpage> |
| 406 </template> | 405 </template> |
| 407 </settings-animated-pages> | 406 </settings-animated-pages> |
| 408 </template> | 407 </template> |
| 409 <script src="privacy_page.js"></script> | 408 <script src="privacy_page.js"></script> |
| 410 </dom-module> | 409 </dom-module> |
| OLD | NEW |