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

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

Issue 2636023002: [Autofill and payments] Redesign Autofill settings UIs (Closed)
Patch Set: rebase Created 3 years, 11 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.SignInPreference 8 <org.chromium.chrome.browser.preferences.SignInPreference
9 android:key="sign_in" 9 android:key="sign_in"
10 android:title="@string/sign_in_to_chrome" /> 10 android:title="@string/sign_in_to_chrome" />
11 11
12 <PreferenceCategory 12 <PreferenceCategory
13 android:title="@string/prefs_section_basics"/> 13 android:title="@string/prefs_section_basics"/>
14 <org.chromium.chrome.browser.preferences.ChromeBasePreference 14 <org.chromium.chrome.browser.preferences.ChromeBasePreference
15 android:fragment="org.chromium.chrome.browser.preferences.SearchEnginePr eference" 15 android:fragment="org.chromium.chrome.browser.preferences.SearchEnginePr eference"
16 android:key="search_engine" 16 android:key="search_engine"
17 android:title="@string/prefs_search_engine"/> 17 android:title="@string/prefs_search_engine"/>
18 <org.chromium.chrome.browser.preferences.ChromeBasePreference 18 <org.chromium.chrome.browser.preferences.ChromeBasePreference
19 android:fragment="org.chromium.chrome.browser.preferences.autofill.Autof illPreferences" 19 android:fragment="org.chromium.chrome.browser.preferences.autofill.Autof illAndPaymentsPreferences"
20 android:key="autofill_settings" 20 android:key="autofill_settings"
21 android:title="@string/prefs_autofill" /> 21 android:title="@string/prefs_autofill_and_payments" />
22 <org.chromium.chrome.browser.preferences.ChromeBasePreference 22 <org.chromium.chrome.browser.preferences.ChromeBasePreference
23 android:key="saved_passwords"/> 23 android:key="saved_passwords"/>
24 <Preference 24 <Preference
25 android:fragment="org.chromium.chrome.browser.preferences.HomepagePrefer ences" 25 android:fragment="org.chromium.chrome.browser.preferences.HomepagePrefer ences"
26 android:key="homepage" 26 android:key="homepage"
27 android:title="@string/options_homepage_title" /> 27 android:title="@string/options_homepage_title" />
28 28
29 <PreferenceCategory 29 <PreferenceCategory
30 android:title="@string/prefs_section_advanced"/> 30 android:title="@string/prefs_section_advanced"/>
31 <Preference 31 <Preference
(...skipping 11 matching lines...) Expand all
43 <org.chromium.chrome.browser.preferences.ChromeBasePreference 43 <org.chromium.chrome.browser.preferences.ChromeBasePreference
44 android:fragment="org.chromium.chrome.browser.preferences.datareduction. DataReductionPreferences" 44 android:fragment="org.chromium.chrome.browser.preferences.datareduction. DataReductionPreferences"
45 android:key="data_reduction" 45 android:key="data_reduction"
46 android:title="@string/data_reduction_title" /> 46 android:title="@string/data_reduction_title" />
47 <Preference 47 <Preference
48 android:fragment="org.chromium.chrome.browser.preferences.AboutChromePre ferences" 48 android:fragment="org.chromium.chrome.browser.preferences.AboutChromePre ferences"
49 android:key="about_chrome" 49 android:key="about_chrome"
50 android:title="@string/prefs_about_chrome" /> 50 android:title="@string/prefs_about_chrome" />
51 51
52 </PreferenceScreen> 52 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698