Update V8 to version 4.7.52.
[chromium-blink-merge.git] / chrome / utility / profile_import_handler.cc
blob3a57d4f446372add189fe5b2142130db927a3695
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/utility/profile_import_handler.h"
7 #include "base/bind.h"
8 #include "base/location.h"
9 #include "base/memory/ref_counted.h"
10 #include "base/single_thread_task_runner.h"
11 #include "base/thread_task_runner_handle.h"
12 #include "base/threading/thread.h"
13 #include "chrome/common/importer/profile_import_process_messages.h"
14 #include "chrome/utility/importer/external_process_importer_bridge.h"
15 #include "chrome/utility/importer/importer.h"
16 #include "chrome/utility/importer/importer_creator.h"
17 #include "content/public/utility/utility_thread.h"
19 namespace {
21 bool Send(IPC::Message* message) {
22 return content::UtilityThread::Get()->Send(message);
25 } // namespace
27 ProfileImportHandler::ProfileImportHandler() : items_to_import_(0) {}
29 ProfileImportHandler::~ProfileImportHandler() {}
31 bool ProfileImportHandler::OnMessageReceived(const IPC::Message& message) {
32 bool handled = true;
33 IPC_BEGIN_MESSAGE_MAP(ProfileImportHandler, message)
34 IPC_MESSAGE_HANDLER(ProfileImportProcessMsg_StartImport, OnImportStart)
35 IPC_MESSAGE_HANDLER(ProfileImportProcessMsg_CancelImport, OnImportCancel)
36 IPC_MESSAGE_HANDLER(ProfileImportProcessMsg_ReportImportItemFinished,
37 OnImportItemFinished)
38 IPC_MESSAGE_UNHANDLED(handled = false)
39 IPC_END_MESSAGE_MAP()
40 return handled;
43 void ProfileImportHandler::OnImportStart(
44 const importer::SourceProfile& source_profile,
45 uint16 items,
46 const base::DictionaryValue& localized_strings) {
47 content::UtilityThread::Get()->EnsureBlinkInitialized();
48 bridge_ = new ExternalProcessImporterBridge(
49 localized_strings,
50 content::UtilityThread::Get(),
51 base::ThreadTaskRunnerHandle::Get().get());
52 importer_ = importer::CreateImporterByType(source_profile.importer_type);
53 if (!importer_.get()) {
54 Send(new ProfileImportProcessHostMsg_Import_Finished(
55 false, "Importer could not be created."));
56 return;
59 items_to_import_ = items;
61 // Create worker thread in which importer runs.
62 import_thread_.reset(new base::Thread("import_thread"));
63 #if defined(OS_WIN)
64 import_thread_->init_com_with_mta(false);
65 #endif
66 if (!import_thread_->Start()) {
67 NOTREACHED();
68 ImporterCleanup();
70 import_thread_->task_runner()->PostTask(
71 FROM_HERE, base::Bind(&Importer::StartImport, importer_.get(),
72 source_profile, items, bridge_));
75 void ProfileImportHandler::OnImportCancel() {
76 ImporterCleanup();
79 void ProfileImportHandler::OnImportItemFinished(uint16 item) {
80 items_to_import_ ^= item; // Remove finished item from mask.
81 // If we've finished with all items, notify the browser process.
82 if (items_to_import_ == 0) {
83 Send(new ProfileImportProcessHostMsg_Import_Finished(true, std::string()));
84 ImporterCleanup();
88 void ProfileImportHandler::ImporterCleanup() {
89 importer_->Cancel();
90 importer_ = NULL;
91 bridge_ = NULL;
92 import_thread_.reset();
93 content::UtilityThread::Get()->ReleaseProcessIfNeeded();