Chromium Code Reviews| Index: chrome/android/java/res/xml/clear_browsing_data_preferences_tab.xml |
| diff --git a/chrome/android/java/res/xml/clear_browsing_data_preferences_tab.xml b/chrome/android/java/res/xml/clear_browsing_data_preferences_tab.xml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b66a33dc39fccd971ef3c98377c779cf112f9888 |
| --- /dev/null |
| +++ b/chrome/android/java/res/xml/clear_browsing_data_preferences_tab.xml |
| @@ -0,0 +1,45 @@ |
| +<?xml version="1.0" encoding="utf-8"?> |
| +<!-- Copyright 2016 The Chromium Authors. All rights reserved. |
|
Theresa
2017/01/27 03:30:11
s/2016/2017
dullweber
2017/01/30 11:36:44
Done.
|
| + Use of this source code is governed by a BSD-style license that can be |
| + found in the LICENSE file. --> |
| + |
| +<PreferenceScreen |
| + xmlns:android="http://schemas.android.com/apk/res/android" |
| + xmlns:chrome="http://schemas.android.com/apk/res-auto"> |
| + |
| + <org.chromium.chrome.browser.preferences.SpinnerPreference |
| + android:key="time_period_spinner" |
| + android:persistent="false" |
| + android:title="@string/clear_browsing_data_period_title" |
| + chrome:singleLine="true" /> |
| + |
| + <Preference android:layout="@layout/divider_preference" /> |
| + |
| + <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference |
| + android:key="clear_history_checkbox" |
| + android:persistent="false" |
| + android:title="@string/clear_history_title" /> |
| + |
| + <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference |
| + android:key="clear_cookies_checkbox" |
| + android:persistent="false" |
| + android:title="@string/clear_cookies_and_site_data_title" |
| + android:summaryOn="@string/clear_cookies_and_site_data_summary" |
| + android:summaryOff="@string/clear_cookies_and_site_data_summary" /> |
| + |
| + <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference |
| + android:key="clear_cache_checkbox" |
| + android:persistent="false" |
| + android:title="@string/clear_cache_title" /> |
| + |
| + <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference |
| + android:key="clear_passwords_checkbox" |
| + android:persistent="false" |
| + android:title="@string/clear_passwords_title" /> |
| + |
| + <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference |
| + android:key="clear_form_data_checkbox" |
| + android:persistent="false" |
| + android:title="@string/clear_form_data_title" /> |
| + |
| +</PreferenceScreen> |