Index: chrome/browser/importer/external_process_importer_bridge.cc |
=================================================================== |
--- chrome/browser/importer/external_process_importer_bridge.cc (revision 208750) |
+++ chrome/browser/importer/external_process_importer_bridge.cc (working copy) |
@@ -126,13 +126,18 @@ |
} |
void ExternalProcessImporterBridge::SetKeywords( |
- const std::vector<TemplateURL*>& template_urls, |
+ const std::vector<importer::URLKeywordInfo>& url_keywords, |
gab
2013/06/27 22:07:29
#include "chrome/browser/importer/importer_data_ty
ananta
2013/06/27 22:29:55
Done.
|
bool unique_on_host_and_path) { |
- Send(new ProfileImportProcessHostMsg_NotifyKeywordsReady(template_urls, |
- unique_on_host_and_path)); |
- STLDeleteContainerPointers(template_urls.begin(), template_urls.end()); |
+ Send(new ProfileImportProcessHostMsg_NotifyKeywordsReady( |
+ url_keywords, unique_on_host_and_path)); |
} |
+void ExternalProcessImporterBridge::SetFirefoxSearchEnginesXMLData( |
+ const std::vector<std::string>& search_engine_data) { |
+ Send(new ProfileImportProcessHostMsg_NotifyFirefoxSearchEngData( |
+ search_engine_data)); |
+} |
+ |
void ExternalProcessImporterBridge::SetPasswordForm( |
const content::PasswordForm& form) { |
Send(new ProfileImportProcessHostMsg_NotifyPasswordFormReady(form)); |