blob: f8a8d917bfefd76e1c017d1eb1a70c8a4870a9ee [file] [log] [blame]
Jeff Hamilton462b8e82010-09-23 14:33:43 -05001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<PreferenceScreen
18 xmlns:android="http://schemas.android.com/apk/res/android">
19
20 <com.android.browser.BrowserYesNoPreference
21 android:key="privacy_clear_cache"
22 android:title="@string/pref_privacy_clear_cache"
23 android:summary="@string/pref_privacy_clear_cache_summary"
24 android:dialogMessage="@string/pref_privacy_clear_cache_dlg"
25 android:dialogTitle="@string/clear"
26 android:dialogIcon="@android:drawable/ic_dialog_alert" />
27
28 <com.android.browser.BrowserYesNoPreference
29 android:key="privacy_clear_history"
30 android:title="@string/pref_privacy_clear_history"
31 android:summary="@string/pref_privacy_clear_history_summary"
32 android:dialogMessage="@string/pref_privacy_clear_history_dlg"
33 android:dialogTitle="@string/clear"
34 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
35
36 <CheckBoxPreference
37 android:key="accept_cookies"
38 android:defaultValue="true"
39 android:title="@string/pref_security_accept_cookies"
40 android:summary="@string/pref_security_accept_cookies_summary" />
41
42 <com.android.browser.BrowserYesNoPreference
43 android:key="privacy_clear_cookies"
44 android:title="@string/pref_privacy_clear_cookies"
45 android:summary="@string/pref_privacy_clear_cookies_summary"
46 android:dialogMessage="@string/pref_privacy_clear_cookies_dlg"
47 android:dialogTitle="@string/clear"
48 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
49
50 <CheckBoxPreference
51 android:key="save_formdata"
52 android:defaultValue="true"
53 android:title="@string/pref_security_save_form_data"
54 android:summary="@string/pref_security_save_form_data_summary" />
55
56 <CheckBoxPreference
57 android:key="autoFill_enabled"
58 android:defaultValue="false"
59 android:title="@string/pref_autoFill_enabled"
60 android:summary="@string/pref_autoFill_enabled_summary" />
61
62 <com.android.browser.BrowserYesNoPreference
63 android:key="privacy_clear_form_data"
64 android:title="@string/pref_privacy_clear_form_data"
65 android:summary="@string/pref_privacy_clear_form_data_summary"
66 android:dialogMessage="@string/pref_privacy_clear_form_data_dlg"
67 android:dialogTitle="@string/clear"
68 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
69
70 <CheckBoxPreference
71 android:key="enable_geolocation"
72 android:defaultValue="true"
73 android:title="@string/pref_privacy_enable_geolocation"
74 android:summary="@string/pref_privacy_enable_geolocation_summary" />
75
76 <com.android.browser.BrowserYesNoPreference
77 android:key="privacy_clear_geolocation_access"
78 android:dependency="enable_geolocation"
79 android:title="@string/pref_privacy_clear_geolocation_access"
80 android:summary="@string/pref_privacy_clear_geolocation_access_summary"
81 android:dialogMessage="@string/pref_privacy_clear_geolocation_access_dlg"
82 android:dialogTitle="@string/clear"
83 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
84
85</PreferenceScreen>