| 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;
|
| }
|
|
|
|
|