| 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_dialo
g.html"> | 8 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo
g.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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 <div class="settings-box" hidden="[[!pageVisibility.searchPrediction]]"> | 71 <div class="settings-box" hidden="[[!pageVisibility.searchPrediction]]"> |
| 72 <settings-toggle-button class="start" | 72 <settings-toggle-button class="start" |
| 73 pref="{{prefs.search.suggest_enabled}}" | 73 pref="{{prefs.search.suggest_enabled}}" |
| 74 label="$i18n{searchSuggestPref}"> | 74 label="$i18n{searchSuggestPref}"> |
| 75 </settings-toggle-button> | 75 </settings-toggle-button> |
| 76 </div> | 76 </div> |
| 77 <div class="settings-box" | 77 <div class="settings-box" |
| 78 hidden="[[!pageVisibility.networkPrediction]]"> | 78 hidden="[[!pageVisibility.networkPrediction]]"> |
| 79 <settings-toggle-button class="start" | 79 <settings-toggle-button class="start" |
| 80 pref="{{prefs.net.network_prediction_options}}" | 80 pref="{{prefs.net.network_prediction_options}}" |
| 81 label="$i18n{networkPredictionEnabled}"> | 81 label="$i18n{networkPredictionEnabled}" |
| 82 numeric-checked-value="[[networkPredictionEnum_.WIFI_ONLY]]" |
| 83 numeric-unchecked-value="[[networkPredictionEnum_.NEVER]]"> |
| 82 </settings-toggle-button> | 84 </settings-toggle-button> |
| 83 </div> | 85 </div> |
| 84 <div class="settings-box"> | 86 <div class="settings-box"> |
| 85 <div class="start">$i18n{safeBrowsingEnableExtendedReporting}</div> | 87 <div class="start">$i18n{safeBrowsingEnableExtendedReporting}</div> |
| 86 <paper-toggle-button id="safeBrowsingExtendedReportingControl" | 88 <paper-toggle-button id="safeBrowsingExtendedReportingControl" |
| 87 on-tap="onSafeBrowsingExtendedReportingControlTap_" | 89 on-tap="onSafeBrowsingExtendedReportingControlTap_" |
| 88 checked="[[safeBrowsingExtendedReportingEnabled_]]"> | 90 checked="[[safeBrowsingExtendedReportingEnabled_]]"> |
| 89 </paper-toggle-button> | 91 </paper-toggle-button> |
| 90 </div> | 92 </div> |
| 91 <div class="settings-box"> | 93 <div class="settings-box"> |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 <category-setting-exceptions | 459 <category-setting-exceptions |
| 458 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> | 460 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> |
| 459 </category-setting-exceptions> | 461 </category-setting-exceptions> |
| 460 </if> | 462 </if> |
| 461 </settings-subpage> | 463 </settings-subpage> |
| 462 </template> | 464 </template> |
| 463 </settings-animated-pages> | 465 </settings-animated-pages> |
| 464 </template> | 466 </template> |
| 465 <script src="privacy_page.js"></script> | 467 <script src="privacy_page.js"></script> |
| 466 </dom-module> | 468 </dom-module> |
| OLD | NEW |