Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3638)

Unified Diff: chrome/browser/autofill/autofill_manager_unittest.cc

Issue 10669038: base: Remove dereference structure operator (i.e ->) from ScopedVector. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/memory/scoped_vector.h ('k') | chrome/browser/autofill/form_structure.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « base/memory/scoped_vector.h ('k') | chrome/browser/autofill/form_structure.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698