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

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

Issue 18064002: The browser importer code which runs in the utility process should not depend on chrome\browser dat… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/importer/external_process_importer_bridge.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/external_process_importer_bridge.h
===================================================================
--- chrome/browser/importer/external_process_importer_bridge.h (revision 208948)
+++ chrome/browser/importer/external_process_importer_bridge.h (working copy)
@@ -5,6 +5,7 @@
#ifndef CHROME_BROWSER_IMPORTER_EXTERNAL_PROCESS_IMPORTER_BRIDGE_H_
#define CHROME_BROWSER_IMPORTER_EXTERNAL_PROCESS_IMPORTER_BRIDGE_H_
+#include <string>
#include <vector>
#include "base/basictypes.h"
@@ -20,6 +21,10 @@
class TaskRunner;
}
+namespace importer {
+struct URLKeywordInfo;
+}
+
namespace IPC {
class Message;
class Sender;
@@ -55,9 +60,13 @@
virtual void SetHistoryItems(const history::URLRows& rows,
history::VisitSource visit_source) OVERRIDE;
- virtual void SetKeywords(const std::vector<TemplateURL*>& template_urls,
- bool unique_on_host_and_path) OVERRIDE;
+ virtual void SetKeywords(
+ const std::vector<importer::URLKeywordInfo>& url_keywords,
+ bool unique_on_host_and_path) OVERRIDE;
+ virtual void SetFirefoxSearchEnginesXMLData(
+ const std::vector<std::string>& seach_engine_data) OVERRIDE;
+
virtual void SetPasswordForm(
const content::PasswordForm& form) OVERRIDE;
« no previous file with comments | « no previous file | chrome/browser/importer/external_process_importer_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698