summaryrefslogtreecommitdiffstats
path: root/chrome/browser/profile_import_process_host.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/profile_import_process_host.cc')
-rw-r--r--chrome/browser/profile_import_process_host.cc17
1 files changed, 17 insertions, 0 deletions
diff --git a/chrome/browser/profile_import_process_host.cc b/chrome/browser/profile_import_process_host.cc
index a5b84ee..7cc58b3 100644
--- a/chrome/browser/profile_import_process_host.cc
+++ b/chrome/browser/profile_import_process_host.cc
@@ -24,6 +24,9 @@ ProfileImportProcessHost::ProfileImportProcessHost(
thread_id_(thread_id) {
}
+ProfileImportProcessHost::~ProfileImportProcessHost() {
+}
+
bool ProfileImportProcessHost::StartProfileImportProcess(
const importer::ProfileInfo& profile_info, int items,
bool import_to_bookmark_bar) {
@@ -132,6 +135,20 @@ void ProfileImportProcessHost::OnProcessCrashed() {
&ImportProcessClient::OnProcessCrashed));
}
+bool ProfileImportProcessHost::CanShutdown() {
+ return true;
+}
+
+URLRequestContext* ProfileImportProcessHost::GetRequestContext(
+ uint32 request_id,
+ const ViewHostMsg_Resource_Request& request_data) {
+ return NULL;
+}
+
+ProfileImportProcessHost::ImportProcessClient::ImportProcessClient() {}
+
+ProfileImportProcessHost::ImportProcessClient::~ImportProcessClient() {}
+
void ProfileImportProcessHost::ImportProcessClient::OnMessageReceived(
const IPC::Message& message) {
IPC_BEGIN_MESSAGE_MAP(ProfileImportProcessHost, message)