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

Unified Diff: chrome/common/importer/importer_bridge.h

Issue 480953002: Implement "Autofill form data" import for Firefox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review feedback (nit fixes, ipc msg changes) 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/common/importer/importer_bridge.h
diff --git a/chrome/common/importer/importer_bridge.h b/chrome/common/importer/importer_bridge.h
index c0903ff6f69e051f50b2b40c862483a09d2939d9..3e6dbdeb8551bf07bfd2635a303654c583eb33ca 100644
--- a/chrome/common/importer/importer_bridge.h
+++ b/chrome/common/importer/importer_bridge.h
@@ -18,6 +18,7 @@
class GURL;
struct ImportedBookmarkEntry;
struct ImportedFaviconUsage;
+struct ImporterAutofillFormDataEntry;
Ilya Sherman 2014/08/20 20:47:23 nit: Please alphabetize.
Nikhil 2014/08/21 07:35:36 Looks to be correct or I'm completely missing some
Ilya Sherman 2014/08/22 06:11:32 Yes, you're right. I missed the difference betwee
namespace autofill {
struct PasswordForm;
@@ -63,6 +64,9 @@ class ImporterBridge : public base::RefCountedThreadSafe<ImporterBridge> {
virtual void SetPasswordForm(const autofill::PasswordForm& form) = 0;
+ virtual void SetAutofillFormData(
+ const std::vector<ImporterAutofillFormDataEntry>& entries) = 0;
+
// Notifies the coordinator that the import operation has begun.
virtual void NotifyStarted() = 0;

Powered by Google App Engine
This is Rietveld 408576698