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

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

Issue 2362673005: [Android] Change default search engine setting page to full screen (Closed)
Patch Set: update based on Ian's new comments and Rolfe's suggestions for UI. Created 4 years, 3 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.SearchEnginePreference 14 <org.chromium.chrome.browser.preferences.ChromeBasePreference
15 android:fragment="org.chromium.chrome.browser.preferences.SearchEnginePr eferences"
15 android:key="search_engine" 16 android:key="search_engine"
16 android:title="@string/prefs_search_engine"/> 17 android:title="@string/prefs_search_engine"/>
17 <org.chromium.chrome.browser.preferences.ChromeBasePreference 18 <org.chromium.chrome.browser.preferences.ChromeBasePreference
18 android:fragment="org.chromium.chrome.browser.preferences.autofill.Autof illPreferences" 19 android:fragment="org.chromium.chrome.browser.preferences.autofill.Autof illPreferences"
19 android:key="autofill_settings" 20 android:key="autofill_settings"
20 android:title="@string/prefs_autofill" /> 21 android:title="@string/prefs_autofill" />
21 <org.chromium.chrome.browser.preferences.ChromeBasePreference 22 <org.chromium.chrome.browser.preferences.ChromeBasePreference
22 android:key="saved_passwords"/> 23 android:key="saved_passwords"/>
23 <Preference 24 <Preference
24 android:fragment="org.chromium.chrome.browser.preferences.HomepagePrefer ences" 25 android:fragment="org.chromium.chrome.browser.preferences.HomepagePrefer ences"
(...skipping 17 matching lines...) Expand all
42 <org.chromium.chrome.browser.preferences.ChromeBasePreference 43 <org.chromium.chrome.browser.preferences.ChromeBasePreference
43 android:fragment="org.chromium.chrome.browser.preferences.datareduction. DataReductionPreferences" 44 android:fragment="org.chromium.chrome.browser.preferences.datareduction. DataReductionPreferences"
44 android:key="data_reduction" 45 android:key="data_reduction"
45 android:title="@string/data_reduction_title" /> 46 android:title="@string/data_reduction_title" />
46 <Preference 47 <Preference
47 android:fragment="org.chromium.chrome.browser.preferences.AboutChromePre ferences" 48 android:fragment="org.chromium.chrome.browser.preferences.AboutChromePre ferences"
48 android:key="about_chrome" 49 android:key="about_chrome"
49 android:title="@string/prefs_about_chrome" /> 50 android:title="@string/prefs_about_chrome" />
50 51
51 </PreferenceScreen> 52 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698