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

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

Issue 2092723002: Redirect users without sync passphrase to passwords.google.com (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix presubmit errors Created 4 years, 5 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/preferences/MainPreferences.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.SearchEnginePreference 14 <org.chromium.chrome.browser.preferences.SearchEnginePreference
15 android:key="search_engine" 15 android:key="search_engine"
16 android:title="@string/prefs_search_engine"/> 16 android:title="@string/prefs_search_engine"/>
17 <org.chromium.chrome.browser.preferences.ChromeBasePreference 17 <org.chromium.chrome.browser.preferences.ChromeBasePreference
18 android:fragment="org.chromium.chrome.browser.preferences.autofill.Autof illPreferences" 18 android:fragment="org.chromium.chrome.browser.preferences.autofill.Autof illPreferences"
19 android:key="autofill_settings" 19 android:key="autofill_settings"
20 android:title="@string/prefs_autofill" /> 20 android:title="@string/prefs_autofill" />
21 <org.chromium.chrome.browser.preferences.ChromeBasePreference 21 <org.chromium.chrome.browser.preferences.ChromeBasePreference
22 android:fragment="org.chromium.chrome.browser.preferences.password.SaveP asswordsPreferences" 22 android:key="saved_passwords"/>
23 android:key="saved_passwords"
24 android:title="@string/prefs_saved_passwords" />
25 <Preference 23 <Preference
26 android:fragment="org.chromium.chrome.browser.preferences.HomepagePrefer ences" 24 android:fragment="org.chromium.chrome.browser.preferences.HomepagePrefer ences"
27 android:key="homepage" 25 android:key="homepage"
28 android:title="@string/options_homepage_title" /> 26 android:title="@string/options_homepage_title" />
29 27
30 <PreferenceCategory 28 <PreferenceCategory
31 android:title="@string/prefs_section_advanced"/> 29 android:title="@string/prefs_section_advanced"/>
32 <Preference 30 <Preference
33 android:fragment="org.chromium.chrome.browser.preferences.privacy.Privac yPreferences" 31 android:fragment="org.chromium.chrome.browser.preferences.privacy.Privac yPreferences"
34 android:key="privacy" 32 android:key="privacy"
35 android:title="@string/prefs_privacy" /> 33 android:title="@string/prefs_privacy" />
36 <Preference 34 <Preference
37 android:fragment="org.chromium.chrome.browser.preferences.AccessibilityP references" 35 android:fragment="org.chromium.chrome.browser.preferences.AccessibilityP references"
38 android:key="accessibility" 36 android:key="accessibility"
39 android:title="@string/prefs_accessibility" /> 37 android:title="@string/prefs_accessibility" />
40 <Preference 38 <Preference
41 android:fragment="org.chromium.chrome.browser.preferences.website.SiteSe ttingsPreferences" 39 android:fragment="org.chromium.chrome.browser.preferences.website.SiteSe ttingsPreferences"
42 android:key="content_settings" 40 android:key="content_settings"
43 android:title="@string/prefs_site_settings" /> 41 android:title="@string/prefs_site_settings" />
44 <org.chromium.chrome.browser.preferences.ChromeBasePreference 42 <org.chromium.chrome.browser.preferences.ChromeBasePreference
45 android:fragment="org.chromium.chrome.browser.preferences.datareduction. DataReductionPreferences" 43 android:fragment="org.chromium.chrome.browser.preferences.datareduction. DataReductionPreferences"
46 android:key="data_reduction" 44 android:key="data_reduction"
47 android:title="@string/data_reduction_title" /> 45 android:title="@string/data_reduction_title" />
48 <Preference 46 <Preference
49 android:fragment="org.chromium.chrome.browser.preferences.AboutChromePre ferences" 47 android:fragment="org.chromium.chrome.browser.preferences.AboutChromePre ferences"
50 android:key="about_chrome" 48 android:key="about_chrome"
51 android:title="@string/prefs_about_chrome" /> 49 android:title="@string/prefs_about_chrome" />
52 50
53 </PreferenceScreen> 51 </PreferenceScreen>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/preferences/MainPreferences.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698