Index: chrome/browser/autofill/autofill_manager_unittest.cc |
diff --git a/chrome/browser/autofill/autofill_manager_unittest.cc b/chrome/browser/autofill/autofill_manager_unittest.cc |
index eb1c3e41fd4541350dd050f375753c06719b7c58..fb18842e15d3aa501ceccb26ccae60d721ae53d0 100644 |
--- a/chrome/browser/autofill/autofill_manager_unittest.cc |
+++ b/chrome/browser/autofill/autofill_manager_unittest.cc |
@@ -98,11 +98,11 @@ class TestPersonalDataManager : public PersonalDataManager { |
} |
void AddProfile(AutofillProfile* profile) { |
- web_profiles_->push_back(profile); |
+ web_profiles_.push_back(profile); |
} |
void AddCreditCard(CreditCard* credit_card) { |
- credit_cards_->push_back(credit_card); |
+ credit_cards_.push_back(credit_card); |
} |
virtual void RemoveProfile(const std::string& guid) OVERRIDE { |
@@ -136,7 +136,7 @@ class TestPersonalDataManager : public PersonalDataManager { |
"4234567890654321", // Visa |
month, year); |
credit_card->set_guid("00000000-0000-0000-0000-000000000007"); |
- credit_cards_->push_back(credit_card); |
+ credit_cards_.push_back(credit_card); |
} |
private: |