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

Side by Side Diff: chrome/android/java/res/xml/clear_browsing_data_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: Renaming. 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2016 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
7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:chrome="http://schemas.android.com/apk/res-auto">
9
10 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
11 android:key="clear_history_checkbox"
12 android:persistent="false"
13 android:title="@string/clear_history_title" />
14
15 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
16 android:key="clear_cache_checkbox"
17 android:persistent="false"
18 android:title="@string/clear_cache_title" />
19
20 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
21 android:key="clear_cookies_checkbox"
22 android:persistent="false"
23 android:title="@string/clear_cookies_and_site_data_title" />
24
25 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
26 android:key="clear_passwords_checkbox"
27 android:persistent="false"
28 android:title="@string/clear_passwords_title" />
29
30 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
31 android:key="clear_form_data_checkbox"
32 android:persistent="false"
33 android:title="@string/clear_form_data_title" />
34
35 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
36 android:key="clear_bookmarks_checkbox"
37 android:persistent="false"
38 android:title="@string/clear_bookmarks_title" />
39
40 <org.chromium.chrome.browser.preferences.ButtonPreference
41 android:key="clear_button"
42 android:title="@string/clear_data_delete" />
43
44 <org.chromium.chrome.browser.preferences.TextMessagePreference
45 android:key="summary" />
46
47 <org.chromium.chrome.browser.preferences.LearnMorePreference
48 android:title="@string/learn_more"
49 chrome:helpContext="@string/help_context_clear_browsing_data" />
50
51 </PreferenceScreen>
OLDNEW
« no previous file with comments | « chrome/android/java/res/values/values.xml ('k') | chrome/android/java/res/xml/privacy_preferences.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698