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

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

Issue 978623002: New UMA settings fragment for Chrome on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Null check removed. Created 5 years, 9 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
« no previous file with comments | « no previous file | chrome/android/java/res/xml/usage_and_crash_reports_preferences.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 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 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> 6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
7 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference 7 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
8 android:key="navigation_error" 8 android:key="navigation_error"
9 android:title="@string/navigation_error_title" 9 android:title="@string/navigation_error_title"
10 android:summary="@string/navigation_error_summary" 10 android:summary="@string/navigation_error_summary"
(...skipping 27 matching lines...) Expand all
38 <org.chromium.chrome.browser.preferences.privacy.CrashDumpUploadPreference 38 <org.chromium.chrome.browser.preferences.privacy.CrashDumpUploadPreference
39 android:key="crash_dump_upload" 39 android:key="crash_dump_upload"
40 android:title="@string/crash_dump_upload_title" 40 android:title="@string/crash_dump_upload_title"
41 android:entries="@array/crash_upload_entries" 41 android:entries="@array/crash_upload_entries"
42 android:entryValues="@array/crash_upload_values" 42 android:entryValues="@array/crash_upload_values"
43 android:defaultValue="@string/crash_dump_never_upload_value" /> 43 android:defaultValue="@string/crash_dump_never_upload_value" />
44 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference 44 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
45 android:key="crash_dump_upload_no_cellular" 45 android:key="crash_dump_upload_no_cellular"
46 android:title="@string/crash_dump_upload_title" 46 android:title="@string/crash_dump_upload_title"
47 android:defaultValue="false" /> 47 android:defaultValue="false" />
48 <Preference
49 android:key="usage_and_crash_reports"
50 android:title="@string/usage_and_crash_reports_title"
51 android:fragment="org.chromium.chrome.browser.preferences.privacy.UsageA ndCrashReportsPreferenceFragment" />
48 52
49 <Preference 53 <Preference
50 android:fragment="org.chromium.chrome.browser.preferences.privacy.DoNotT rackPreference" 54 android:fragment="org.chromium.chrome.browser.preferences.privacy.DoNotT rackPreference"
51 android:key="do_not_track" 55 android:key="do_not_track"
52 android:title="@string/do_not_track_title" /> 56 android:title="@string/do_not_track_title" />
53 <org.chromium.chrome.browser.preferences.ButtonPreference 57 <org.chromium.chrome.browser.preferences.ButtonPreference
54 android:key="clear_browsing_data" 58 android:key="clear_browsing_data"
55 android:title="@string/clear_browsing_data_title" /> 59 android:title="@string/clear_browsing_data_title" />
56 </PreferenceScreen> 60 </PreferenceScreen>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/xml/usage_and_crash_reports_preferences.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698