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

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

Issue 1845853003: Split the footer in ClearBrowsingDataPreferences into two paragraphs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed icons, added annotation. Created 4 years, 8 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 2016 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2016 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 6 <PreferenceScreen
7 xmlns:android="http://schemas.android.com/apk/res/android" 7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:chrome="http://schemas.android.com/apk/res-auto"> 8 xmlns:chrome="http://schemas.android.com/apk/res-auto">
9 9
10 <org.chromium.chrome.browser.preferences.SpinnerPreference 10 <org.chromium.chrome.browser.preferences.SpinnerPreference
(...skipping 26 matching lines...) Expand all
37 android:key="clear_form_data_checkbox" 37 android:key="clear_form_data_checkbox"
38 android:persistent="false" 38 android:persistent="false"
39 android:title="@string/clear_form_data_title" /> 39 android:title="@string/clear_form_data_title" />
40 40
41 <org.chromium.chrome.browser.preferences.ButtonPreference 41 <org.chromium.chrome.browser.preferences.ButtonPreference
42 android:key="clear_button" 42 android:key="clear_button"
43 android:title="@string/clear_data_delete" /> 43 android:title="@string/clear_data_delete" />
44 44
45 <Preference android:layout="@layout/divider_preference" /> 45 <Preference android:layout="@layout/divider_preference" />
46 46
47 <org.chromium.chrome.browser.preferences.TextMessagePreference 47 <org.chromium.chrome.browser.preferences.TextMessageWithLinkAndIconPreferenc e
48 android:key="summary" /> 48 android:key="google_summary"
49 android:summary="@string/clear_browsing_data_footnote_signed"
50 android:icon="@drawable/googleg" />
49 51
50 <org.chromium.chrome.browser.preferences.LearnMorePreference 52 <org.chromium.chrome.browser.preferences.TextMessageWithLinkAndIconPreferenc e
51 android:title="@string/learn_more" 53 android:key="general_summary"
52 chrome:helpContext="@string/help_context_clear_browsing_data" /> 54 android:icon="@drawable/ic_info_grey" />
53 55
54 </PreferenceScreen> 56 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698