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

Unified Diff: chrome/browser/importer/profile_writer.h

Issue 480953002: Implement "Autofill form data" import for Firefox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added test case Created 6 years, 4 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
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..2aa4f79272e05e015d412a78f5b139cf5469eee5 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,9 @@ class ProfileWriter : public base::RefCountedThreadSafe<ProfileWriter> {
virtual void AddKeywords(ScopedVector<TemplateURL> template_urls,
bool unique_on_host_and_path);
+ virtual void AddAutofillFormDataEntries(
+ const std::vector<autofill::AutofillEntry>& autofill_entries);
Ilya Sherman 2014/08/20 05:47:41 nit: Please document this method.
Nikhil 2014/08/20 11:29:16 Done.
+
protected:
friend class base::RefCountedThreadSafe<ProfileWriter>;

Powered by Google App Engine
This is Rietveld 408576698