| Index: chrome/browser/profile_import_process_host.cc
|
| diff --git a/chrome/browser/profile_import_process_host.cc b/chrome/browser/profile_import_process_host.cc
|
| index a5b84ee2172300abbc9051d6395ea4b6f32c4f5b..7cc58b320a2030afd796e4b809f047ea3e6ba886 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)
|
|
|