Index: chrome/browser/extensions/extension_updater.cc |
diff --git a/chrome/browser/extensions/extension_updater.cc b/chrome/browser/extensions/extension_updater.cc |
index ff1b8cef9a45ace42a4e0e2876b1ad15253e15ac..dd1b1573c8b7263ce60e316abe63b5f5b586646e 100644 |
--- a/chrome/browser/extensions/extension_updater.cc |
+++ b/chrome/browser/extensions/extension_updater.cc |
@@ -650,6 +650,9 @@ class SafeManifestParser : public UtilityProcessHost::Client { |
if (use_utility_process) { |
UtilityProcessHost* host = new UtilityProcessHost( |
this, BrowserThread::UI); |
+#if defined(OS_LINUX) |
+ host->set_should_use_zygote(true); |
+#endif |
host->Send(new ChromeUtilityMsg_ParseUpdateManifest(xml_)); |
} else { |
UpdateManifest manifest; |