| Index: chrome/browser/component_updater/component_updater_service.cc
|
| diff --git a/chrome/browser/component_updater/component_updater_service.cc b/chrome/browser/component_updater/component_updater_service.cc
|
| index d7e2ff2de7fa2caf5eefb12b607c88c26e02d61b..f3eee77c204791f46acb13e813f98b5b3b1f8a6b 100644
|
| --- a/chrome/browser/component_updater/component_updater_service.cc
|
| +++ b/chrome/browser/component_updater/component_updater_service.cc
|
| @@ -706,9 +706,9 @@ void CrxUpdateService::ParseManifest(const std::string& xml) {
|
| CrxUpdateService::OnParseUpdateManifestSucceeded(manifest.results());
|
| }
|
| } else {
|
| - UtilityProcessHost* host = UtilityProcessHost::Create(
|
| - new ManifestParserBridge(this),
|
| - base::MessageLoopProxy::current());
|
| + UtilityProcessHost* host =
|
| + UtilityProcessHost::Create(new ManifestParserBridge(this),
|
| + base::MessageLoopProxy::current().get());
|
| host->EnableZygote();
|
| host->Send(new ChromeUtilityMsg_ParseUpdateManifest(xml));
|
| }
|
|
|