Home | History | Annotate | Download | only in autofill

Lines Matching full:profiles

46 // Serializes the |profiles| into a string.
47 std::string SerializeProfiles(const std::vector<AutofillProfile*>& profiles) {
49 for (size_t i = 0; i < profiles.size(); ++i) {
55 profiles[i]->GetMultiInfo(type, &values);
73 // Reset the saved profiles.
98 std::vector<AutofillProfile> profiles;
99 if (!MergeProfile(profile, profiles_.get(), &profiles))
109 // A data-driven test for verifying merging of Autofill profiles. Each input is
110 // a structured dump of a set of implicitly detected autofill profiles. The
111 // corresponding output file is a dump of the saved profiles that result from
112 // importing the input profiles. The output file format is identical to the
126 // Deserializes a set of Autofill profiles from |profiles|, imports each
128 void MergeProfiles(const std::string& profiles, std::string* merged_profiles);
153 void AutofillMergeTest::MergeProfiles(const std::string& profiles,
155 // Start with no saved profiles.
168 Tokenize(profiles, "\n", &lines);