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

Unified Diff: components/autofill/core/browser/autofill_external_delegate.cc

Issue 828063004: Update Android Card Unmask prompt to rely on the controller a bit more. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use newt's description 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 side-by-side diff with in-line comments
Download patch
Index: components/autofill/core/browser/autofill_external_delegate.cc
diff --git a/components/autofill/core/browser/autofill_external_delegate.cc b/components/autofill/core/browser/autofill_external_delegate.cc
index 849cb897333143ff16197ff0b363c9825448a38d..585e3748ffde1fbc338e45fabfff4ae778a7a188 100644
--- a/components/autofill/core/browser/autofill_external_delegate.cc
+++ b/components/autofill/core/browser/autofill_external_delegate.cc
@@ -104,9 +104,8 @@ void AutofillExternalDelegate::OnSuggestionsReturned(
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableWalletCardImport)) {
// For now, add a fake masked card.
- suggestions.push_back(Suggestion(
- "Visa - 1111", "[tap to unlock]", "",
- POPUP_ITEM_ID_FAKE_MASKED_INSTRUMENT));
+ suggestions.push_back(Suggestion("Amex - 8431", "[tap to unlock]", "",
+ POPUP_ITEM_ID_FAKE_MASKED_INSTRUMENT));
}
// Add a separator to go between the values and menu items.

Powered by Google App Engine
This is Rietveld 408576698