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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/xml/privacy_preferences.xml
diff --git a/chrome/android/java/res/xml/privacy_preferences.xml b/chrome/android/java/res/xml/privacy_preferences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c08e9bbd9e008abf0899bcd5290247fb1d631788
--- /dev/null
+++ b/chrome/android/java/res/xml/privacy_preferences.xml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2015 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file. -->
+
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
+ <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
+ android:key="navigation_error"
+ android:title="@string/navigation_error_title"
+ android:summary="@string/navigation_error_summary"
+ android:defaultValue="true" />
+ <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
+ android:key="search_suggestions"
+ android:title="@string/search_suggestions_title"
+ android:summary="@string/search_suggestions_summary"
+ android:defaultValue="true" />
+ <Preference
+ android:key="contextual_search"
+ android:title="@string/contextual_search_title"
+ android:fragment="org.chromium.chrome.browser.preferences.privacy.ContextualSearchPreferenceFragment" />
+
+ <!-- Only one of these network prediction preferences will be shown, depending on whether
+ the device has cellular support. -->
+ <org.chromium.chrome.browser.preferences.privacy.NetworkPredictionPreference
+ android:key="network_predictions"
+ android:title="@string/network_predictions_title"
+ android:entries="@array/bandwidth_entries"
+ android:entryValues="@array/bandwidth_entry_values"
+ android:defaultValue="@string/network_prediction_wifi_only_value" />
+ <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
+ android:key="network_predictions_no_cellular"
+ android:title="@string/network_predictions_title"
+ android:summary="@string/network_predictions_summary"
+ android:defaultValue="true" />
+
+ <!-- Only one of these "Usage and crash reports" preferences will be shown, depending on whether
+ the device has cellular support. -->
+ <org.chromium.chrome.browser.preferences.privacy.CrashDumpUploadPreference
+ android:key="crash_dump_upload"
+ android:title="@string/crash_dump_upload_title"
+ android:entries="@array/crash_upload_entries"
+ android:entryValues="@array/crash_upload_values"
+ android:defaultValue="@string/crash_dump_never_upload_value" />
+ <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
+ android:key="crash_dump_upload_no_cellular"
+ android:title="@string/crash_dump_upload_title"
+ android:defaultValue="false" />
+
+ <Preference
+ android:fragment="org.chromium.chrome.browser.preferences.privacy.DoNotTrackPreference"
+ android:key="do_not_track"
+ android:title="@string/do_not_track_title" />
+ <org.chromium.chrome.browser.preferences.ButtonPreference
+ android:key="clear_browsing_data"
+ android:title="@string/clear_browsing_data_title" />
+</PreferenceScreen>

Powered by Google App Engine
This is Rietveld 408576698