| 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 | 6 <PreferenceScreen |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
| 9 android:title="@string/all_sites"> | 9 android:title="@string/all_sites"> |
| 10 <!-- A global toggle, only shown for specific categories that allow turning
default values | 10 <!-- A global toggle, only shown for specific categories that allow turning
default values |
| 11 for that category on/off.--> | 11 for that category on/off.--> |
| 12 <org.chromium.chrome.browser.preferences.ChromeSwitchPreference | 12 <org.chromium.chrome.browser.preferences.ChromeSwitchPreference |
| 13 android:key="read_write_toggle" | 13 android:key="read_write_toggle" |
| 14 android:defaultValue="true" | 14 android:defaultValue="true" |
| 15 chrome:drawDivider="true" /> | 15 chrome:drawDivider="true" /> |
| 16 <!-- A toggle for allowing third-party cookies, only shown for the Cookies c
ategory. --> | 16 <!-- A toggle for allowing third-party cookies, only shown for the Cookies c
ategory. --> |
| 17 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference | 17 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference |
| 18 android:key="third_party_cookies" | 18 android:key="third_party_cookies" |
| 19 android:title="@string/allow_third_party_cookies_title" | 19 android:title="@string/allow_third_party_cookies_title" |
| 20 android:summary="@string/allow_third_party_cookies_summary" | 20 android:summary="@string/allow_third_party_cookies_summary" |
| 21 android:defaultValue="true" /> | 21 android:defaultValue="true" /> |
| 22 <!-- An hyperlink to explain more about Protected Media content settings. --
> |
| 23 <org.chromium.chrome.browser.preferences.HyperlinkPreference |
| 24 android:key="protected_content_learn_more" |
| 25 android:title="@string/learn_more" |
| 26 android:background="?android:attr/listDivider" |
| 27 chrome:url="@string/protected_content_learn_more_url" |
| 28 chrome:imitateWebLink="true" /> |
| 22 <!-- Collapsible headers for sorting preferences. --> | 29 <!-- Collapsible headers for sorting preferences. --> |
| 23 <org.chromium.chrome.browser.preferences.ExpandablePreferenceGroup | 30 <org.chromium.chrome.browser.preferences.ExpandablePreferenceGroup |
| 24 android:key="blocked_group" /> | 31 android:key="blocked_group" /> |
| 25 <org.chromium.chrome.browser.preferences.ExpandablePreferenceGroup | 32 <org.chromium.chrome.browser.preferences.ExpandablePreferenceGroup |
| 26 android:key="allowed_group" /> | 33 android:key="allowed_group" /> |
| 27 </PreferenceScreen> | 34 </PreferenceScreen> |
| OLD | NEW |