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

Unified Diff: chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.cc

Issue 873313011: Update Android card unmasking prompt for the expiration date case. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.cc
diff --git a/chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.cc b/chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.cc
index 70818ee4f62be700b306080ea8c55da872eeffc2..d768d5e4cf5315690bc67c71c5dd3b59d5bfdb69 100644
--- a/chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.cc
+++ b/chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.cc
@@ -62,8 +62,8 @@ content::WebContents* CardUnmaskPromptControllerImpl::GetWebContents() {
base::string16 CardUnmaskPromptControllerImpl::GetWindowTitle() const {
// TODO(estade): i18n.
if (ShouldRequestExpirationDate()) {
- return base::ASCIIToUTF16("Update and verify your card ") +
- card_.TypeAndLastFourDigits();
+ return base::ASCIIToUTF16("Update your card ") +
+ card_.TypeAndLastFourDigits();
}
return base::ASCIIToUTF16("Verify your card ") +

Powered by Google App Engine
This is Rietveld 408576698