| OLD | NEW |
| 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 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference | 31 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference |
| 32 android:key="clear_passwords_checkbox" | 32 android:key="clear_passwords_checkbox" |
| 33 android:persistent="false" | 33 android:persistent="false" |
| 34 android:title="@string/clear_passwords_title" /> | 34 android:title="@string/clear_passwords_title" /> |
| 35 | 35 |
| 36 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference | 36 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference |
| 37 android:key="clear_form_data_checkbox" | 37 android:key="clear_form_data_checkbox" |
| 38 android:persistent="false" | 38 android:persistent="false" |
| 39 android:title="@string/clear_form_data_title" /> | 39 android:title="@string/clear_form_data_title" /> |
| 40 | 40 |
| 41 <org.chromium.chrome.browser.preferences.ClearBrowsingDataCheckBoxPreference |
| 42 android:key="clear_site_settings_checkbox" |
| 43 android:persistent="false" |
| 44 android:title="@string/prefs_site_settings" /> |
| 45 |
| 41 <org.chromium.chrome.browser.preferences.ButtonPreference | 46 <org.chromium.chrome.browser.preferences.ButtonPreference |
| 42 android:key="clear_button" | 47 android:key="clear_button" |
| 43 android:title="@string/clear_data_delete" /> | 48 android:title="@string/clear_data_delete" /> |
| 44 | 49 |
| 45 <Preference android:layout="@layout/divider_preference" /> | 50 <Preference android:layout="@layout/divider_preference" /> |
| 46 | 51 |
| 47 <org.chromium.chrome.browser.preferences.TextMessageWithLinkAndIconPreferenc
e | 52 <org.chromium.chrome.browser.preferences.TextMessageWithLinkAndIconPreferenc
e |
| 48 android:key="google_summary" | 53 android:key="google_summary" |
| 49 android:summary="@string/clear_browsing_data_footnote_signed" | 54 android:summary="@string/clear_browsing_data_footnote_signed" |
| 50 android:icon="@drawable/googleg" | 55 android:icon="@drawable/googleg" |
| 51 chrome:noBottomSpacing="true" /> | 56 chrome:noBottomSpacing="true" /> |
| 52 | 57 |
| 53 <org.chromium.chrome.browser.preferences.TextMessageWithLinkAndIconPreferenc
e | 58 <org.chromium.chrome.browser.preferences.TextMessageWithLinkAndIconPreferenc
e |
| 54 android:key="general_summary" | 59 android:key="general_summary" |
| 55 android:icon="@drawable/ic_info_grey" /> | 60 android:icon="@drawable/ic_info_grey" /> |
| 56 | 61 |
| 57 </PreferenceScreen> | 62 </PreferenceScreen> |
| OLD | NEW |