mobile/android/base/resources/xml/preferences_privacy.xml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mobile/android/base/resources/xml/preferences_privacy.xml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,45 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.6 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     1.8 +
     1.9 +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    1.10 +                  xmlns:gecko="http://schemas.android.com/apk/res-auto"
    1.11 +                  android:title="@string/pref_category_privacy_short"
    1.12 +                  android:enabled="false">
    1.13 +
    1.14 +    <ListPreference android:key="privacy.donottrackheader"
    1.15 +                    android:title="@string/pref_donottrack_menu"
    1.16 +                    android:entries="@array/pref_donottrack_entries"
    1.17 +                    android:entryValues="@array/pref_donottrack_values"
    1.18 +                    android:persistent="false" />
    1.19 +
    1.20 +    <ListPreference android:key="network.cookie.cookieBehavior"
    1.21 +                    android:title="@string/pref_cookies_menu"
    1.22 +                    android:entries="@array/pref_cookies_entries"
    1.23 +                    android:entryValues="@array/pref_cookies_values"
    1.24 +                    android:persistent="false" />
    1.25 +
    1.26 +    <CheckBoxPreference android:key="signon.rememberSignons"
    1.27 +                        android:title="@string/pref_remember_signons"
    1.28 +                        android:defaultValue="true"
    1.29 +                        android:persistent="false" />
    1.30 +
    1.31 +    <CheckBoxPreference android:key="privacy.masterpassword.enabled"
    1.32 +                        android:title="@string/pref_use_master_password"
    1.33 +                        android:defaultValue="false"
    1.34 +                        android:persistent="false" />
    1.35 +
    1.36 +    <!-- keys prefixed with "android.not_a_preference." are not synced with Gecko -->
    1.37 +    <org.mozilla.gecko.preferences.PrivateDataPreference
    1.38 +                        android:key="android.not_a_preference.privacy.clear"
    1.39 +                        android:title="@string/pref_clear_private_data"
    1.40 +                        android:persistent="true"
    1.41 +                        android:positiveButtonText="@string/button_clear_data"
    1.42 +                        gecko:entries="@array/pref_private_data_entries"
    1.43 +                        gecko:entryKeys="@array/pref_private_data_keys"
    1.44 +                        gecko:initialValues="@array/pref_private_data_values" />
    1.45 +
    1.46 +</PreferenceScreen>
    1.47 +
    1.48 +

mercurial