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

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

Issue 1618413002: Change the CBD dialog on Android to a PreferenceFragment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed button, fixed tests Created 4 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
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 android:key="do_not_track" 60 android:key="do_not_track"
61 android:title="@string/do_not_track_title" /> 61 android:title="@string/do_not_track_title" />
62 <Preference 62 <Preference
63 android:key="contextual_search" 63 android:key="contextual_search"
64 android:title="@string/contextual_search_title" 64 android:title="@string/contextual_search_title"
65 android:fragment="org.chromium.chrome.browser.preferences.privacy.Contex tualSearchPreferenceFragment" /> 65 android:fragment="org.chromium.chrome.browser.preferences.privacy.Contex tualSearchPreferenceFragment" />
66 <Preference 66 <Preference
67 android:key="physical_web" 67 android:key="physical_web"
68 android:title="@string/physical_web_pref_title" 68 android:title="@string/physical_web_pref_title"
69 android:fragment="org.chromium.chrome.browser.preferences.privacy.Physic alWebPreferenceFragment" /> 69 android:fragment="org.chromium.chrome.browser.preferences.privacy.Physic alWebPreferenceFragment" />
70 <org.chromium.chrome.browser.preferences.ButtonPreference 70 <Preference
msramek 2016/01/28 18:43:48 I had a discussion with our UX designer today and
71 android:key="clear_browsing_data" 71 android:key="clear_browsing_data"
72 android:title="@string/clear_browsing_data_title" /> 72 android:title="@string/clear_browsing_data_title"
73 android:fragment="org.chromium.chrome.browser.preferences.privacy.ClearB rowsingDataDialogFragment" />
73 </PreferenceScreen> 74 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698