| OLD | NEW |
| 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 24 matching lines...) Expand all Loading... |
| 35 <org.chromium.chrome.browser.preferences.ClearBrowsingDataTabCheckBoxPrefere
nce | 35 <org.chromium.chrome.browser.preferences.ClearBrowsingDataTabCheckBoxPrefere
nce |
| 36 android:key="clear_passwords_checkbox" | 36 android:key="clear_passwords_checkbox" |
| 37 android:persistent="false" | 37 android:persistent="false" |
| 38 android:title="@string/clear_passwords_title" /> | 38 android:title="@string/clear_passwords_title" /> |
| 39 | 39 |
| 40 <org.chromium.chrome.browser.preferences.ClearBrowsingDataTabCheckBoxPrefere
nce | 40 <org.chromium.chrome.browser.preferences.ClearBrowsingDataTabCheckBoxPrefere
nce |
| 41 android:key="clear_form_data_checkbox" | 41 android:key="clear_form_data_checkbox" |
| 42 android:persistent="false" | 42 android:persistent="false" |
| 43 android:title="@string/clear_form_data_title" /> | 43 android:title="@string/clear_form_data_title" /> |
| 44 | 44 |
| 45 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference |
| 46 android:key="clear_site_settings_checkbox" |
| 47 android:persistent="false" |
| 48 android:title="@string/clear_site_settings_title" /> |
| 45 </PreferenceScreen> | 49 </PreferenceScreen> |
| OLD | NEW |