| 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,
|
| 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_NotifyFirefoxSearchEngineData(
|
| + search_engine_data));
|
| +}
|
| +
|
| void ExternalProcessImporterBridge::SetPasswordForm(
|
| const content::PasswordForm& form) {
|
| Send(new ProfileImportProcessHostMsg_NotifyPasswordFormReady(form));
|
|
|