Chromium Code Reviews| Index: chrome/browser/extensions/extension_management_api.cc |
| diff --git a/chrome/browser/extensions/extension_management_api.cc b/chrome/browser/extensions/extension_management_api.cc |
| index 361a4ae28a2d32183666544f3dfa7eac8a466117..1b746b1d28c2f7537f75950683c2708ba14ece1b 100644 |
| --- a/chrome/browser/extensions/extension_management_api.cc |
| +++ b/chrome/browser/extensions/extension_management_api.cc |
| @@ -212,6 +212,9 @@ class SafeManifestJSONParser : public UtilityProcessHost::Client { |
| void StartWorkOnIOThread() { |
| CHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| utility_host_ = new UtilityProcessHost(this, BrowserThread::IO); |
| +#if defined(OS_LINUX) |
| + utility_host_->set_should_use_zygote(true); |
|
Aaron Boodman
2011/12/02 03:10:04
Since most call sites want the zygote enabled, how
Jorge Lucangeli Obes
2011/12/02 18:27:16
The good thing about defaulting to false is that w
Jorge Lucangeli Obes
2011/12/02 20:43:48
Actually, scratch that. I'm pretty sure I got all
|
| +#endif |
| utility_host_->Send(new ChromeUtilityMsg_ParseJSON(manifest_)); |
| } |