Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- 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.
| |
| 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.SpinnerPreference | |
| 11 android:key="time_period_spinner" | |
| 12 android:persistent="false" | |
| 13 android:title="@string/clear_browsing_data_period_title" | |
| 14 chrome:singleLine="true" /> | |
| 15 | |
| 16 <Preference android:layout="@layout/divider_preference" /> | |
| 17 | |
| 18 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference | |
| 19 android:key="clear_history_checkbox" | |
| 20 android:persistent="false" | |
| 21 android:title="@string/clear_history_title" /> | |
| 22 | |
| 23 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference | |
| 24 android:key="clear_cookies_checkbox" | |
| 25 android:persistent="false" | |
| 26 android:title="@string/clear_cookies_and_site_data_title" | |
| 27 android:summaryOn="@string/clear_cookies_and_site_data_summary" | |
| 28 android:summaryOff="@string/clear_cookies_and_site_data_summary" /> | |
| 29 | |
| 30 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference | |
| 31 android:key="clear_cache_checkbox" | |
| 32 android:persistent="false" | |
| 33 android:title="@string/clear_cache_title" /> | |
| 34 | |
| 35 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference | |
| 36 android:key="clear_passwords_checkbox" | |
| 37 android:persistent="false" | |
| 38 android:title="@string/clear_passwords_title" /> | |
| 39 | |
| 40 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference | |
| 41 android:key="clear_form_data_checkbox" | |
| 42 android:persistent="false" | |
| 43 android:title="@string/clear_form_data_title" /> | |
| 44 | |
| 45 </PreferenceScreen> | |
| OLD | NEW |