Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: chrome/android/java/res/xml/sync_customization_preferences.xml

Issue 1660353002: Update account and sync management UX (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add TODO in comments for an additional task for the bug Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698