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

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

Issue 2816723002: Add "Site Settings" option to Clear Browsing Data on Android (Closed)
Patch Set: fix deps Created 3 years, 7 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 2017 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2017 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 6 <PreferenceScreen
7 xmlns:android="http://schemas.android.com/apk/res/android" 7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:chrome="http://schemas.android.com/apk/res-auto"> 8 xmlns:chrome="http://schemas.android.com/apk/res-auto">
9 9
10 <org.chromium.chrome.browser.preferences.SpinnerPreference 10 <org.chromium.chrome.browser.preferences.SpinnerPreference
(...skipping 26 matching lines...) Expand all
37 <org.chromium.chrome.browser.preferences.ClearBrowsingDataTabCheckBoxPrefere nce 37 <org.chromium.chrome.browser.preferences.ClearBrowsingDataTabCheckBoxPrefere nce
38 android:key="clear_passwords_checkbox" 38 android:key="clear_passwords_checkbox"
39 android:persistent="false" 39 android:persistent="false"
40 android:title="@string/clear_passwords_title" /> 40 android:title="@string/clear_passwords_title" />
41 41
42 <org.chromium.chrome.browser.preferences.ClearBrowsingDataTabCheckBoxPrefere nce 42 <org.chromium.chrome.browser.preferences.ClearBrowsingDataTabCheckBoxPrefere nce
43 android:key="clear_form_data_checkbox" 43 android:key="clear_form_data_checkbox"
44 android:persistent="false" 44 android:persistent="false"
45 android:title="@string/clear_form_data_title" /> 45 android:title="@string/clear_form_data_title" />
46 46
47 <org.chromium.chrome.browser.preferences.ClearBrowsingDataTabCheckBoxPrefere nce
48 android:key="clear_site_settings_checkbox"
49 android:persistent="false"
50 android:title="@string/prefs_site_settings" />
47 </PreferenceScreen> 51 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698