Chromium Code Reviews

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

Issue 6082001: Autofill saves duplicate profiles and credit card info in preferences (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « chrome/browser/autofill/autofill_dialog_controller_mac.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/personal_data_manager.cc
diff --git a/chrome/browser/autofill/personal_data_manager.cc b/chrome/browser/autofill/personal_data_manager.cc
index 8554064766ceebd56d20ab168f91a943eaf4adda..c7e15922fd0012e2e674b483352137c96ed4623f 100644
--- a/chrome/browser/autofill/personal_data_manager.cc
+++ b/chrome/browser/autofill/personal_data_manager.cc
@@ -54,6 +54,66 @@ class FormGroupGUIDMatchesFunctor<T *> {
};
template<typename T>
+class FormGroupProfileMatchesFunctor {
+ public:
+ explicit FormGroupProfileMatchesFunctor(const AutoFillProfile& profile)
+ : profile_(profile) {
+ }
+
+ bool operator()(const T& profile) {
+ return profile.Compare(profile_) == 0;
+ }
+
+ private:
+ const AutoFillProfile& profile_;
+};
+
+template<typename T>
+class FormGroupProfileMatchesFunctor<T *> {
+ public:
+ explicit FormGroupProfileMatchesFunctor(const AutoFillProfile& profile)
+ : profile_(profile) {
+ }
+
+ bool operator()(const T* profile) {
+ return profile->Compare(profile_) == 0;
+ }
+
+ private:
+ const AutoFillProfile& profile_;
+};
+
+template<typename T>
+class FormGroupCreditCardMatchesFunctor {
+ public:
+ explicit FormGroupCreditCardMatchesFunctor(const CreditCard& credit_card)
+ : credit_card_(credit_card) {
+ }
+
+ bool operator()(const T& credit_card) {
+ return credit_card.Compare(credit_card_) == 0;
+ }
+
+ private:
+ const CreditCard& credit_card_;
+};
+
+template<typename T>
+class FormGroupCreditCardMatchesFunctor<T *> {
+ public:
+ explicit FormGroupCreditCardMatchesFunctor(const CreditCard& credit_card)
+ : credit_card_(credit_card) {
+ }
+
+ bool operator()(const T* credit_card) {
+ return credit_card->Compare(credit_card_) == 0;
+ }
+
+ private:
+ const CreditCard& credit_card_;
+};
Ilya Sherman 2010/12/20 20:57:04 Wow, that's a lot of new functors. I think we jus
dhollowa 2010/12/20 23:16:44 Yes, better. But to do this I needed to add a sec
+
+template<typename T>
class DereferenceFunctor {
public:
template<typename T_Iterator>
@@ -73,6 +133,22 @@ bool FindByGUID(const C& container, const std::string& guid) {
FormGroupGUIDMatchesFunctor<T>(guid)) != container.end();
}
+template<typename T, typename C>
+bool FindByContents(const C& container, const AutoFillProfile& profile) {
+ return std::find_if(
+ container.begin(),
+ container.end(),
+ FormGroupProfileMatchesFunctor<T>(profile)) != container.end();
+}
+
+template<typename T, typename C>
+bool FindByContents(const C& container, const CreditCard& credit_card) {
+ return std::find_if(
+ container.begin(),
+ container.end(),
+ FormGroupCreditCardMatchesFunctor<T>(credit_card)) != container.end();
+}
Ilya Sherman 2010/12/20 20:57:04 Likewise, here we just need one function -- someth
dhollowa 2010/12/20 23:16:44 Done.
+
} // namespace
PersonalDataManager::~PersonalDataManager() {
@@ -313,10 +389,11 @@ void PersonalDataManager::SetProfiles(std::vector<AutoFillProfile>* profiles) {
wds->UpdateAutoFillProfileGUID(*iter);
}
- // Add the new profiles to the web database.
+ // Add the new profiles to the web database. Don't add a duplicate.
for (std::vector<AutoFillProfile>::iterator iter = profiles->begin();
iter != profiles->end(); ++iter) {
- if (!FindByGUID<AutoFillProfile*>(web_profiles_, iter->guid()))
+ if (!FindByGUID<AutoFillProfile*>(web_profiles_, iter->guid()) &&
+ !FindByContents<AutoFillProfile*>(web_profiles_, *iter))
Ilya Sherman 2010/12/20 20:57:04 nit: With the above changes, you should be able to
dhollowa 2010/12/20 23:16:44 Done.
wds->AddAutoFillProfileGUID(*iter);
}
@@ -366,10 +443,11 @@ void PersonalDataManager::SetCreditCards(
wds->UpdateCreditCardGUID(*iter);
}
- // Add the new credit cards to the web database.
+ // Add the new credit cards to the web database. Don't add a duplicate.
for (std::vector<CreditCard>::iterator iter = credit_cards->begin();
iter != credit_cards->end(); ++iter) {
- if (!FindByGUID<CreditCard*>(credit_cards_, iter->guid()))
+ if (!FindByGUID<CreditCard*>(credit_cards_, iter->guid()) &&
+ !FindByContents<CreditCard*>(credit_cards_, *iter))
wds->AddCreditCardGUID(*iter);
}
« no previous file with comments | « chrome/browser/autofill/autofill_dialog_controller_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine