1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. -->
6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
7 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
8 android:key="navigation_error"
9 android:title="@string/navigation_error_title"
10 android:summary="@string/navigation_error_summary"
11 android:defaultValue="true" />
12 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
13 android:key="search_suggestions"
14 android:title="@string/search_suggestions_title"
15 android:summary="@string/search_suggestions_summary"
16 android:defaultValue="true" />
17 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
18 android:key="safe_browsing_extended_reporting"
19 android:title="@string/safe_browsing_extended_reporting_title"
20 android:summary="@string/safe_browsing_extended_reporting_summary" />
21 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
22 android:key="safe_browsing"
23 android:title="@string/safe_browsing_title"
24 android:summary="@string/safe_browsing_summary" />
26 android:key="contextual_search"
27 android:title="@string/contextual_search_title"
28 android:fragment="org.chromium.chrome.browser.preferences.privacy.ContextualSearchPreferenceFragment" />
30 <!-- Only one of these network prediction preferences will be shown, depending on whether
31 the device has cellular support. -->
32 <org.chromium.chrome.browser.preferences.privacy.NetworkPredictionPreference
33 android:key="network_predictions"
34 android:title="@string/network_predictions_title"
35 android:entries="@array/bandwidth_entries"
36 android:entryValues="@array/bandwidth_entry_values"
37 android:defaultValue="@string/network_prediction_wifi_only_value" />
38 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
39 android:key="network_predictions_no_cellular"
40 android:title="@string/network_predictions_title"
41 android:summary="@string/network_predictions_summary"
42 android:defaultValue="true" />
44 <!-- Only one of these "Usage and crash reports" preferences will be shown, depending on whether
45 the device has cellular support. -->
46 <org.chromium.chrome.browser.preferences.privacy.CrashDumpUploadPreference
47 android:key="crash_dump_upload"
48 android:title="@string/crash_dump_upload_title"
49 android:entries="@array/crash_upload_entries"
50 android:entryValues="@array/crash_upload_values"
51 android:defaultValue="@string/crash_dump_never_upload_value" />
52 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
53 android:key="crash_dump_upload_no_cellular"
54 android:title="@string/crash_dump_upload_title"
55 android:defaultValue="false" />
57 android:key="usage_and_crash_reports"
58 android:title="@string/usage_and_crash_reports_title"
59 android:fragment="org.chromium.chrome.browser.preferences.privacy.UsageAndCrashReportsPreferenceFragment" />
62 android:fragment="org.chromium.chrome.browser.preferences.privacy.DoNotTrackPreference"
63 android:key="do_not_track"
64 android:title="@string/do_not_track_title" />
65 <org.chromium.chrome.browser.preferences.ButtonPreference
66 android:key="clear_browsing_data"
67 android:title="@string/clear_browsing_data_title" />