Chromium Code Reviews| Index: chrome/app/chrome_main_delegate.cc |
| diff --git a/chrome/app/chrome_main_delegate.cc b/chrome/app/chrome_main_delegate.cc |
| index 44b5eceb150fba92fc49e3c2155923a83f9023aa..c6556191c16ae0bf377e68a089cb09afe276be3a 100644 |
| --- a/chrome/app/chrome_main_delegate.cc |
| +++ b/chrome/app/chrome_main_delegate.cc |
| @@ -696,8 +696,10 @@ void ChromeMainDelegate::PreSandboxStartup() { |
| locale; |
| #if !defined(CHROME_MULTIPLE_DLL_BROWSER) |
| - if (process_type == switches::kUtilityProcess) |
| + if (process_type == switches::kUtilityProcess || |
| + process_type == switches::kZygoteProcess) { |
| chrome::ChromeContentUtilityClient::PreSandboxStartup(); |
|
jln (very slow on Chromium)
2013/11/14 23:14:18
Do you mind calling this from content/zygote/zygot
Vitaly Buka (NO REVIEWS)
2013/11/14 23:53:18
PreSandboxInit() /
PreloadPepperPlugins()
are p
jln (very slow on Chromium)
2013/11/15 00:11:22
Ahh yeah, of course, silly me.
I hope that the Zy
|
| + } |
| #endif |
| } |