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

Unified Diff: chrome/browser/autofill/autofill-inl.h

Issue 6903091: Autofill Multi-Value: Additional profiles with same name and address not added to DOM UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address nits. Created 9 years, 8 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 | « no previous file | chrome/browser/autofill/credit_card.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/autofill-inl.h
diff --git a/chrome/browser/autofill/autofill-inl.h b/chrome/browser/autofill/autofill-inl.h
index 66e0df2183c3f73c3b05af6625ec022b88f4ddcc..4d903245eeb762d6c76c5f8b8e65e39f7d86f763 100644
--- a/chrome/browser/autofill/autofill-inl.h
+++ b/chrome/browser/autofill/autofill-inl.h
@@ -14,11 +14,11 @@ class FormGroupMatchesByCompareFunctor {
}
bool operator()(const T* form_group) {
- return form_group->Compare(form_group_) == 0;
+ return form_group->CompareMulti(form_group_) == 0;
}
bool operator()(const T& form_group) {
- return form_group.Compare(form_group_) == 0;
+ return form_group.CompareMulti(form_group_) == 0;
}
private:
« no previous file with comments | « no previous file | chrome/browser/autofill/credit_card.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698