Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: chrome/android/java/res/xml/privacy_preferences.xml

Issue 935903002: Upstream privacy settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: init CommandLine to fix tests Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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. -->
5
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 <Preference
18 android:key="contextual_search"
19 android:title="@string/contextual_search_title"
20 android:fragment="org.chromium.chrome.browser.preferences.privacy.Contex tualSearchPreferenceFragment" />
21
22 <!-- Only one of these network prediction preferences will be shown, dependi ng on whether
23 the device has cellular support. -->
24 <org.chromium.chrome.browser.preferences.privacy.NetworkPredictionPreference
25 android:key="network_predictions"
26 android:title="@string/network_predictions_title"
27 android:entries="@array/bandwidth_entries"
28 android:entryValues="@array/bandwidth_entry_values"
29 android:defaultValue="@string/network_prediction_wifi_only_value" />
30 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
31 android:key="network_predictions_no_cellular"
32 android:title="@string/network_predictions_title"
33 android:summary="@string/network_predictions_summary"
34 android:defaultValue="true" />
35
36 <!-- Only one of these "Usage and crash reports" preferences will be shown, depending on whether
37 the device has cellular support. -->
38 <org.chromium.chrome.browser.preferences.privacy.CrashDumpUploadPreference
39 android:key="crash_dump_upload"
40 android:title="@string/crash_dump_upload_title"
41 android:entries="@array/crash_upload_entries"
42 android:entryValues="@array/crash_upload_values"
43 android:defaultValue="@string/crash_dump_never_upload_value" />
44 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
45 android:key="crash_dump_upload_no_cellular"
46 android:title="@string/crash_dump_upload_title"
47 android:defaultValue="false" />
48
49 <Preference
50 android:fragment="org.chromium.chrome.browser.preferences.privacy.DoNotT rackPreference"
51 android:key="do_not_track"
52 android:title="@string/do_not_track_title" />
53 <org.chromium.chrome.browser.preferences.ButtonPreference
54 android:key="clear_browsing_data"
55 android:title="@string/clear_browsing_data_title" />
56 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698