Index: chrome/browser/autofill/credit_card.cc |
=================================================================== |
--- chrome/browser/autofill/credit_card.cc (revision 37123) |
+++ chrome/browser/autofill/credit_card.cc (working copy) |
@@ -34,6 +34,13 @@ |
CreditCard::CreditCard(const CreditCard& card) { |
operator=(card); |
} |
+ |
+CreditCard::CreditCard() |
+ : expiration_month_(0), |
+ expiration_year_(0) { |
+} |
+ |
+ |
FormGroup* CreditCard::Clone() const { |
return new CreditCard(*this); |
} |