| Index: chrome/browser/autofill/credit_card.cc
|
| ===================================================================
|
| --- chrome/browser/autofill/credit_card.cc (revision 38653)
|
| +++ chrome/browser/autofill/credit_card.cc (working copy)
|
| @@ -42,7 +42,6 @@
|
| expiration_year_(0) {
|
| }
|
|
|
| -
|
| FormGroup* CreditCard::Clone() const {
|
| return new CreditCard(*this);
|
| }
|
| @@ -325,6 +324,10 @@
|
| return true;
|
| }
|
|
|
| +bool CreditCard::operator!=(const CreditCard& creditcard) const {
|
| + return !operator==(creditcard);
|
| +}
|
| +
|
| bool CreditCard::FindInfoMatchesHelper(const AutoFillFieldType& field_type,
|
| const string16& info,
|
| string16* match) const {
|
|
|