Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
7 xmlns:gecko="http://schemas.android.com/apk/res-auto"
8 android:title="@string/pref_category_privacy_short"
9 android:enabled="false">
11 <ListPreference android:key="privacy.donottrackheader"
12 android:title="@string/pref_donottrack_menu"
13 android:entries="@array/pref_donottrack_entries"
14 android:entryValues="@array/pref_donottrack_values"
15 android:persistent="false" />
17 <ListPreference android:key="network.cookie.cookieBehavior"
18 android:title="@string/pref_cookies_menu"
19 android:entries="@array/pref_cookies_entries"
20 android:entryValues="@array/pref_cookies_values"
21 android:persistent="false" />
23 <CheckBoxPreference android:key="signon.rememberSignons"
24 android:title="@string/pref_remember_signons"
25 android:defaultValue="true"
26 android:persistent="false" />
28 <CheckBoxPreference android:key="privacy.masterpassword.enabled"
29 android:title="@string/pref_use_master_password"
30 android:defaultValue="false"
31 android:persistent="false" />
33 <!-- keys prefixed with "android.not_a_preference." are not synced with Gecko -->
34 <org.mozilla.gecko.preferences.PrivateDataPreference
35 android:key="android.not_a_preference.privacy.clear"
36 android:title="@string/pref_clear_private_data"
37 android:persistent="true"
38 android:positiveButtonText="@string/button_clear_data"
39 gecko:entries="@array/pref_private_data_entries"
40 gecko:entryKeys="@array/pref_private_data_keys"
41 gecko:initialValues="@array/pref_private_data_values" />
43 </PreferenceScreen>