| Index: chrome/browser/autofill/credit_card.cc
|
| diff --git a/chrome/browser/autofill/credit_card.cc b/chrome/browser/autofill/credit_card.cc
|
| index afb20e01dfe9c1c1a5e49d93b4d5127524ba1fe1..4018fe424b7db03e43e20687dde58f19f15b2aa4 100644
|
| --- a/chrome/browser/autofill/credit_card.cc
|
| +++ b/chrome/browser/autofill/credit_card.cc
|
| @@ -372,6 +372,10 @@ int CreditCard::Compare(const CreditCard& credit_card) const {
|
| return 0;
|
| }
|
|
|
| +int CreditCard::CompareMulti(const CreditCard& credit_card) const {
|
| + return Compare(credit_card);
|
| +}
|
| +
|
| bool CreditCard::operator==(const CreditCard& credit_card) const {
|
| if (guid_ != credit_card.guid_)
|
| return false;
|
|
|