| Index: components/autofill/core/browser/credit_card.cc
|
| diff --git a/components/autofill/core/browser/credit_card.cc b/components/autofill/core/browser/credit_card.cc
|
| index 295f6c1173e3e745b363a31f10de5e5486b5baf9..798a86661fb9dc785bab622e7871e11241ac0834 100644
|
| --- a/components/autofill/core/browser/credit_card.cc
|
| +++ b/components/autofill/core/browser/credit_card.cc
|
| @@ -133,9 +133,8 @@ CreditCard::~CreditCard() {}
|
|
|
| // static
|
| const base::string16 CreditCard::StripSeparators(const base::string16& number) {
|
| - const base::char16 kSeparators[] = {'-', ' ', '\0'};
|
| base::string16 stripped;
|
| - base::RemoveChars(number, kSeparators, &stripped);
|
| + base::RemoveChars(number, base::ASCIIToUTF16("- "), &stripped);
|
| return stripped;
|
| }
|
|
|
|
|