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

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

Issue 847023002: Changes to android autofill preferences for wallet integration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: its own page Created 5 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 Copyright 2015 The Chromium Authors. All rights reserved.
4
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
7 -->
8
9 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
10 xmlns:app="http://schemas.android.com/apk/res-auto" >
11
12 <org.chromium.chrome.browser.preferences.ChromeSwitchPreference
13 android:key="autofill_wallet_switch"
14 android:summaryOn="@string/text_on"
15 android:summaryOff="@string/text_off" />
16
17 <org.chromium.chrome.browser.preferences.TextMessagePreference
18 android:title="@string/autofill_wallet_description" />
19
20 <!-- TODO(estade): Surprisingly, HyperlinkPreference does not actually look like a link.
newt (away) 2015/01/14 02:04:53 I wouldn't change the behavior of HyperlinkPrefere
Evan Stade 2015/01/14 22:26:43 Alright. I'd like to punt that to a later CL thoug
newt (away) 2015/01/14 22:54:13 How does the Data Saver "Learn more" link look dif
Evan Stade 2015/01/14 23:10:27 yea, it's blue. But also, when you tap it, there's
21 We should either fix HyperlinkPreference or copy the technique used by
22 data_reduction_learn_more. -->
23 <org.chromium.chrome.browser.preferences.HyperlinkPreference
24 android:title="@string/autofill_wallet_management_link_text"
25 app:url="@string/autofill_manage_wallet_cards_url" />
26
27 <org.chromium.chrome.browser.preferences.TextMessagePreference
28 android:title="@string/autofill_wallet_cache_explanation" />
29
30 <org.chromium.chrome.browser.preferences.ButtonPreference
31 android:key="autofill_clear_unmasked_cards"
32 android:title="@string/autofill_wallet_clear_unmasked_cards" />
33
34 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698