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

Unified Diff: chrome/utility/chrome_content_utility_client.cc

Issue 8726023: Remove ChildThread dependency from Chrome. In the future we might want to expose it as an interfa... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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
Index: chrome/utility/chrome_content_utility_client.cc
===================================================================
--- chrome/utility/chrome_content_utility_client.cc (revision 111804)
+++ chrome/utility/chrome_content_utility_client.cc (working copy)
@@ -374,7 +374,8 @@
const importer::SourceProfile& source_profile,
uint16 items,
const DictionaryValue& localized_strings) {
- bridge_ = new ExternalProcessImporterBridge(localized_strings);
+ bridge_ = new ExternalProcessImporterBridge(
+ localized_strings, content::UtilityThread::Get());
importer_ = importer::CreateImporterByType(source_profile.importer_type);
if (!importer_) {
Send(new ProfileImportProcessHostMsg_Import_Finished(false,

Powered by Google App Engine
This is Rietveld 408576698