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

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

Issue 2644573003: Initial version of the split CBD dialog (Closed)
Patch Set: Created 3 years, 11 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 2016 The Chromium Authors. All rights reserved. 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 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
11 android:key="time_period_spinner" 11 android:key="time_period_spinner"
12 android:persistent="false" 12 android:persistent="false"
13 android:title="@string/clear_browsing_data_period_title" /> 13 android:title="@string/clear_browsing_data_period_title" />
14 14
15 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference 15 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference
16 android:key="clear_history_checkbox" 16 android:key="clear_history_checkbox"
17 android:persistent="false" 17 android:persistent="false"
18 android:title="@string/clear_history_title" /> 18 android:title="@string/clear_history_title" />
19 19
20 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference 20 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference
21 android:key="clear_cookies_checkbox" 21 android:key="clear_cookies_checkbox"
22 android:persistent="false" 22 android:persistent="false"
23 android:title="@string/clear_cookies_and_site_data_title" 23 android:title="@string/clear_cookies_and_site_data_title"
24 android:summaryOn="@string/clear_cookies_and_site_data_summary" /> 24 android:summaryOn="@string/clear_cookies_and_site_data_summary"
25 android:summaryOff="@string/clear_cookies_and_site_data_summary" />
msramek 2017/01/18 17:06:39 In the old dialog, there should be no "off" summar
dullweber 2017/01/19 13:16:14 ok, I removed it here.
25 26
26 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference 27 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference
27 android:key="clear_cache_checkbox" 28 android:key="clear_cache_checkbox"
28 android:persistent="false" 29 android:persistent="false"
29 android:title="@string/clear_cache_title" /> 30 android:title="@string/clear_cache_title" />
30 31
31 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference 32 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference
32 android:key="clear_passwords_checkbox" 33 android:key="clear_passwords_checkbox"
33 android:persistent="false" 34 android:persistent="false"
34 android:title="@string/clear_passwords_title" /> 35 android:title="@string/clear_passwords_title" />
(...skipping 13 matching lines...) Expand all
48 android:key="google_summary" 49 android:key="google_summary"
49 android:summary="@string/clear_browsing_data_footnote_signed" 50 android:summary="@string/clear_browsing_data_footnote_signed"
50 android:icon="@drawable/googleg" 51 android:icon="@drawable/googleg"
51 chrome:noBottomSpacing="true" /> 52 chrome:noBottomSpacing="true" />
52 53
53 <org.chromium.chrome.browser.preferences.TextMessageWithLinkAndIconPreferenc e 54 <org.chromium.chrome.browser.preferences.TextMessageWithLinkAndIconPreferenc e
54 android:key="general_summary" 55 android:key="general_summary"
55 android:icon="@drawable/ic_info_grey" /> 56 android:icon="@drawable/ic_info_grey" />
56 57
57 </PreferenceScreen> 58 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698