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 xmlns:android="http://schemas.android.com/apk/res/android"> | 6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> |
7 | 7 |
8 <org.chromium.chrome.browser.preferences.ChromeSwitchPreference | 8 <org.chromium.chrome.browser.preferences.ChromeSwitchPreference |
9 android:key="sync_switch" | 9 android:key="sync_switch" |
10 android:summaryOn="@string/text_on" | 10 android:summaryOn="@string/text_on" |
(...skipping 19 matching lines...) Expand all Loading... |
30 android:key="sync_omnibox" | 30 android:key="sync_omnibox" |
31 android:title="@string/sync_history"/> | 31 android:title="@string/sync_history"/> |
32 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference | 32 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference |
33 android:persistent="false" | 33 android:persistent="false" |
34 android:key="sync_passwords" | 34 android:key="sync_passwords" |
35 android:title="@string/sync_passwords"/> | 35 android:title="@string/sync_passwords"/> |
36 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference | 36 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference |
37 android:persistent="false" | 37 android:persistent="false" |
38 android:key="sync_recent_tabs" | 38 android:key="sync_recent_tabs" |
39 android:title="@string/sync_recent_tabs"/> | 39 android:title="@string/sync_recent_tabs"/> |
| 40 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference |
| 41 android:persistent="false" |
| 42 android:key="sync_settings" |
| 43 android:title="@string/sync_settings"/> |
40 </PreferenceCategory> | 44 </PreferenceCategory> |
41 <Preference | 45 <Preference |
42 android:key="encryption" | 46 android:key="encryption" |
43 android:title="@string/sync_encryption"> | 47 android:title="@string/sync_encryption"> |
44 </Preference> | 48 </Preference> |
45 <Preference | 49 <Preference |
46 android:key="sync_manage_data" | 50 android:key="sync_manage_data" |
47 android:title="@string/sync_manage_data"> | 51 android:title="@string/sync_manage_data"> |
48 </Preference> | 52 </Preference> |
49 </PreferenceScreen> | 53 </PreferenceScreen> |
OLD | NEW |