Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / browser / resources / settings / privacy_page / privacy_page.html
bloba0df434ad4b2239c3adec964fd449d4f813b613b
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
3 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button.html">
4 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html">
6 <dom-module id="cr-settings-privacy-page">
7 <link rel="import" type="css"
8 href="chrome://md-settings/settings_page/settings_page.css">
9 <link rel="import" type="css" href="privacy_page.css">
10 <template>
11 <p class="privacy-explanation"
12 i18n-values=".innerHTML:improveBrowsingExperience">
13 </p>
14 <cr-settings-checkbox
15 pref="{{prefs.alternate_error_pages.enabled}}"
16 i18n-values="label:linkDoctorPref">
17 </cr-settings-checkbox>
18 <cr-settings-checkbox
19 pref="{{prefs.search.suggest_enabled}}"
20 i18n-values="label:searchSuggestPref">
21 </cr-settings-checkbox>
22 <cr-settings-checkbox
23 pref="{{prefs.net.network_prediction_options}}"
24 i18n-values="label:networkPredictionEnabled">
25 </cr-settings-checkbox>
26 <cr-settings-checkbox
27 pref="{{prefs.safebrowsing.extended_reporting_enabled}}"
28 i18n-values="label:safeBrowsingEnableExtendedReporting">
29 </cr-settings-checkbox>
30 <cr-settings-checkbox pref="{{prefs.safebrowsing.enabled}}"
31 i18n-values="label:safeBrowsingEnableProtection">
32 </cr-settings-checkbox>
33 <if expr="_google_chrome">
34 <cr-settings-checkbox
35 pref="{{prefs.spellcheck.use_spelling_service}}"
36 i18n-values="label:spellingPref">
37 </cr-settings-checkbox>
38 <if expr="chromeos">
39 <cr-settings-checkbox
40 pref="{{prefs.cros.metrics.reportingEnabled}}"
41 i18n-values="label:enableLogging">
42 </cr-settings-checkbox>
43 </if>
44 <!-- TODO(jlklein): Add non-chromeos metrics box. -->
45 </if>
46 <cr-settings-checkbox pref="{{prefs.enable_do_not_track}}"
47 i18n-values="label:doNotTrack">
48 </cr-settings-checkbox>
49 <if expr="chromeos">
50 <cr-settings-checkbox
51 pref="{{prefs.cros.device.attestation_for_content_protection_enabled}}"
52 i18n-values="label:enableContentProtectionAttestation">
53 </cr-settings-checkbox>
54 <cr-settings-checkbox
55 pref="{{prefs.settings.internet.wake_on_wifi_ssid}}"
56 i18n-values="label:wakeOnWifi">
57 </cr-settings-checkbox>
58 </if>
59 <div class="privacy-buttons layout horizontal end-justified">
60 <cr-button i18n-content="siteSettingsLabel"></cr-button>
61 <cr-button raised i18n-content="clearBrowsingDataLabel">
62 </cr-button>
63 </div>
64 </template>
65 <script src="privacy_page.js"></script>
66 </dom-module>