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

Unified Diff: components/autofill/core/browser/webdata/autofill_table.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: components/autofill/core/browser/webdata/autofill_table.cc
diff --git a/components/autofill/core/browser/webdata/autofill_table.cc b/components/autofill/core/browser/webdata/autofill_table.cc
index 4f4c8157a3c842b649b62d5bb3756704175a6110..1b1857cfd37ec21c7b2cc77a82aa40c464ebb2bd 100644
--- a/components/autofill/core/browser/webdata/autofill_table.cc
+++ b/components/autofill/core/browser/webdata/autofill_table.cc
@@ -454,7 +454,7 @@ std::string ServerStatusEnumToString(CreditCard::ServerStatus status) {
return "OK";
}
- NOTREACHED();
+ // NOTREACHED();
return "OK";
}
@@ -462,7 +462,7 @@ CreditCard::ServerStatus ServerStatusStringToEnum(const std::string& status) {
if (status == "EXPIRED")
return CreditCard::EXPIRED;
- DCHECK_EQ("OK", status);
+ // DCHECK_EQ("OK", status);
return CreditCard::OK;
}

Powered by Google App Engine
This is Rietveld 408576698