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:title="@string/sign_in_sync" |
11 android:summaryOff="@string/text_off" /> | 11 android:summary="@string/sync_description" /> |
| 12 |
| 13 <org.chromium.chrome.browser.preferences.SyncedAccountPreference |
| 14 android:key="synced_account" /> |
12 | 15 |
13 <PreferenceCategory | 16 <PreferenceCategory |
14 android:key="sync_data_types" | 17 android:key="sync_data_types" |
15 android:title="@string/sync_data_types"> | 18 android:title="@string/sync_data_types"> |
16 <org.chromium.chrome.browser.preferences.ChromeSwitchPreference | 19 <org.chromium.chrome.browser.preferences.ChromeSwitchPreference |
17 android:persistent="false" | 20 android:persistent="false" |
18 android:key="sync_everything" | 21 android:key="sync_everything" |
19 android:title="@string/sync_everything_pref"/> | 22 android:title="@string/sync_everything_pref"/> |
20 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference | 23 <org.chromium.chrome.browser.preferences.ChromeBaseCheckBoxPreference |
21 android:persistent="false" | 24 android:persistent="false" |
(...skipping 26 matching lines...) Expand all Loading... |
48 </PreferenceCategory> | 51 </PreferenceCategory> |
49 <Preference | 52 <Preference |
50 android:key="encryption" | 53 android:key="encryption" |
51 android:title="@string/sync_encryption"> | 54 android:title="@string/sync_encryption"> |
52 </Preference> | 55 </Preference> |
53 <Preference | 56 <Preference |
54 android:key="sync_manage_data" | 57 android:key="sync_manage_data" |
55 android:title="@string/sync_manage_data"> | 58 android:title="@string/sync_manage_data"> |
56 </Preference> | 59 </Preference> |
57 </PreferenceScreen> | 60 </PreferenceScreen> |
OLD | NEW |