Chromium Code Reviews| 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..233c7836b9c7f844fdf14c51a370ff226d3dda0b 100644 |
| --- a/chrome/common/importer/importer_bridge.h |
| +++ b/chrome/common/importer/importer_bridge.h |
| @@ -12,6 +12,7 @@ |
| #include "base/memory/ref_counted.h" |
| #include "base/strings/string16.h" |
| #include "build/build_config.h" |
| +#include "chrome/common/importer/importer_autofill_form_data_entry.h" |
|
Ilya Sherman
2014/08/20 05:47:41
nit: Can you forward-declare the type, rather than
Nikhil
2014/08/20 11:29:17
Done.
|
| #include "chrome/common/importer/importer_data_types.h" |
| #include "chrome/common/importer/importer_url_row.h" |
| @@ -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; |