| 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 96177983264218b1084aeb118bf4e483ec43c5a8..92e82c3125a05c46553a78233c39763d9cc5dd02 100644
|
| --- a/components/autofill/core/browser/credit_card.cc
|
| +++ b/components/autofill/core/browser/credit_card.cc
|
| @@ -133,9 +133,9 @@ CreditCard::~CreditCard() {}
|
|
|
| // static
|
| const base::string16 CreditCard::StripSeparators(const base::string16& number) {
|
| - const char16 kSeparators[] = {'-', ' ', '\0'};
|
| + const base::char16 kSeparators[] = {'-', ' ', '\0'};
|
| base::string16 stripped;
|
| - RemoveChars(number, kSeparators, &stripped);
|
| + base::RemoveChars(number, kSeparators, &stripped);
|
| return stripped;
|
| }
|
|
|
|
|