OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 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 xmlns:android="http://schemas.android.com/apk/res/android"> | 6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> |
7 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference | 7 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference |
8 android:key="navigation_error" | 8 android:key="navigation_error" |
9 android:title="@string/navigation_error_title" | 9 android:title="@string/navigation_error_title" |
10 android:summary="@string/navigation_error_summary" | 10 android:summary="@string/navigation_error_summary" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 android:key="do_not_track" | 60 android:key="do_not_track" |
61 android:title="@string/do_not_track_title" /> | 61 android:title="@string/do_not_track_title" /> |
62 <Preference | 62 <Preference |
63 android:key="contextual_search" | 63 android:key="contextual_search" |
64 android:title="@string/contextual_search_title" | 64 android:title="@string/contextual_search_title" |
65 android:fragment="org.chromium.chrome.browser.preferences.privacy.Contex
tualSearchPreferenceFragment" /> | 65 android:fragment="org.chromium.chrome.browser.preferences.privacy.Contex
tualSearchPreferenceFragment" /> |
66 <Preference | 66 <Preference |
67 android:key="physical_web" | 67 android:key="physical_web" |
68 android:title="@string/physical_web_pref_title" | 68 android:title="@string/physical_web_pref_title" |
69 android:fragment="org.chromium.chrome.browser.preferences.privacy.Physic
alWebPreferenceFragment" /> | 69 android:fragment="org.chromium.chrome.browser.preferences.privacy.Physic
alWebPreferenceFragment" /> |
70 <org.chromium.chrome.browser.preferences.ButtonPreference | 70 <Preference |
71 android:key="clear_browsing_data" | 71 android:key="clear_browsing_data" |
72 android:title="@string/clear_browsing_data_title" /> | 72 android:title="@string/clear_browsing_data_title" |
| 73 android:fragment="org.chromium.chrome.browser.preferences.privacy.ClearB
rowsingDataPreferences" /> |
73 </PreferenceScreen> | 74 </PreferenceScreen> |
OLD | NEW |