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

Unified Diff: extensions/browser/updater/safe_manifest_parser.cc

Issue 2133083002: Remove all remaining traces of MessageLoopProxy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months 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: extensions/browser/updater/safe_manifest_parser.cc
diff --git a/extensions/browser/updater/safe_manifest_parser.cc b/extensions/browser/updater/safe_manifest_parser.cc
index 05c75a955967b7e7560280e96b760136f3a94af2..3bc3aee0e9afe4868a45b05ccab657b5a7180de4 100644
--- a/extensions/browser/updater/safe_manifest_parser.cc
+++ b/extensions/browser/updater/safe_manifest_parser.cc
@@ -45,8 +45,7 @@ void SafeManifestParser::ParseInSandbox() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
content::UtilityProcessHost* host = content::UtilityProcessHost::Create(
- this,
- BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI).get());
+ this, BrowserThread::GetTaskRunnerForThread(BrowserThread::UI).get());
host->SetName(
l10n_util::GetStringUTF16(IDS_UTILITY_PROCESS_MANIFEST_PARSER_NAME));
host->Send(new ExtensionUtilityMsg_ParseUpdateManifest(xml_));

Powered by Google App Engine
This is Rietveld 408576698