| Index: chrome/utility/profile_import_handler.cc
|
| diff --git a/chrome/utility/profile_import_handler.cc b/chrome/utility/profile_import_handler.cc
|
| index 494facb1457a367f86d80349d2bee5bcdbb4fa88..f90b1281124ffe649fdffcb0916bd37821abc2c2 100644
|
| --- a/chrome/utility/profile_import_handler.cc
|
| +++ b/chrome/utility/profile_import_handler.cc
|
| @@ -49,9 +49,10 @@ void ProfileImportHandler::OnImportStart(
|
|
|
| // Create worker thread in which importer runs.
|
| import_thread_.reset(new base::Thread("import_thread"));
|
| - base::Thread::Options options;
|
| - options.message_loop_type = base::MessageLoop::TYPE_IO;
|
| - if (!import_thread_->StartWithOptions(options)) {
|
| +#if defined(OS_WIN)
|
| + import_thread_->init_com_with_mta(false);
|
| +#endif
|
| + if (!import_thread_->Start()) {
|
| NOTREACHED();
|
| ImporterCleanup();
|
| }
|
|
|