Index: components/autofill/core/browser/autofill_profile.h |
diff --git a/components/autofill/core/browser/autofill_profile.h b/components/autofill/core/browser/autofill_profile.h |
index 5768386cc92e1cee09a8445134a2e7077b7dbc5a..fb0b3e592e0dc34974ccc6e4232de4a16b562173 100644 |
--- a/components/autofill/core/browser/autofill_profile.h |
+++ b/components/autofill/core/browser/autofill_profile.h |
@@ -144,6 +144,12 @@ class AutofillProfile : public AutofillDataModel { |
language_code_ = language_code; |
} |
+ // Overwrites or appends names from autofillable profile |names| to the |
+ // existing list of autofill profile names maintained under |name_|, so as |
+ // to keep ones with more information for identical profile full names |
+ // otherwise append to this list. |
+ void OverwriteOrAppendNames(const std::vector<NameInfo>& names); |
Ilya Sherman
2014/05/31 00:34:41
This should remain private, as it is an implementa
Pritam Nikam
2014/05/31 10:30:41
Done.
|
+ |
private: |
typedef std::vector<const FormGroup*> FormGroupList; |