1 <?xml version="1.0" encoding="utf-8"?>
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
4 found in the LICENSE file. -->
7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:chrome="http://schemas.android.com/apk/res-auto"
9 android:title="@string/all_sites">
10 <!-- A global toggle, only shown for specific categories that allow turning default values
11 for that category on/off.-->
12 <org.chromium.chrome.browser.preferences.ChromeSwitchPreference
13 android:key="read_write_toggle"
14 android:defaultValue="true"
15 chrome:drawDivider="true" />
16 <!-- A toggle for allowing third-party cookies, only shown for the Cookies category. -->
17 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference
18 android:key="third_party_cookies"
19 android:title="@string/allow_third_party_cookies_title"
20 android:summary="@string/allow_third_party_cookies_summary"
21 android:defaultValue="true" />
22 <!-- An hyperlink to explain more about Protected Media content settings. -->
23 <org.chromium.chrome.browser.preferences.LearnMorePreference
24 android:key="protected_content_learn_more"
25 android:background="?android:attr/listDivider"
26 chrome:helpContext="@string/help_context_protected_content"/>
27 <!-- Collapsible headers for sorting preferences. -->
28 <org.chromium.chrome.browser.preferences.ExpandablePreferenceGroup
29 android:key="blocked_group" />
30 <org.chromium.chrome.browser.preferences.ExpandablePreferenceGroup
31 android:key="allowed_group" />