Chromium Code Reviews| Index: chrome/browser/importer/profile_writer.h |
| diff --git a/chrome/browser/importer/profile_writer.h b/chrome/browser/importer/profile_writer.h |
| index 3c036b34dab130d0f751eddc2dd87881bdade87c..992b1365fb4f4acf9d23b4a7adf7cd974e1886b8 100644 |
| --- a/chrome/browser/importer/profile_writer.h |
| +++ b/chrome/browser/importer/profile_writer.h |
| @@ -23,6 +23,7 @@ class TemplateURL; |
| namespace autofill { |
| struct PasswordForm; |
| +class AutofillEntry; |
| } |
| #if defined(OS_WIN) |
| @@ -89,6 +90,10 @@ class ProfileWriter : public base::RefCountedThreadSafe<ProfileWriter> { |
| virtual void AddKeywords(ScopedVector<TemplateURL> template_urls, |
| bool unique_on_host_and_path); |
| + // Adds the imported autofill entries in the autofill table. |
|
Ilya Sherman
2014/08/20 20:47:23
nit: "in the autofill table" -> "to the autofill d
Nikhil
2014/08/21 07:35:36
Done.
|
| + virtual void AddAutofillFormDataEntries( |
| + const std::vector<autofill::AutofillEntry>& autofill_entries); |
| + |
| protected: |
| friend class base::RefCountedThreadSafe<ProfileWriter>; |