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 486cd42220d210c531f6fcaaa862f7ffb5dffb0e..ea2b07fa41cadc0ac3000d4520cb097be68e524b 100644 |
| --- a/chrome/app/chrome_main_delegate.cc |
| +++ b/chrome/app/chrome_main_delegate.cc |
| @@ -858,7 +858,8 @@ bool ChromeMainDelegate::DelaySandboxInitialization( |
| void ChromeMainDelegate::ZygoteStarting( |
| ScopedVector<content::ZygoteForkDelegate>* delegates) { |
| #if !defined(DISABLE_NACL) |
| - delegates->push_back(new NaClForkDelegate()); |
| + delegates->push_back(new NaClForkDelegate(false /* nonsfi_mode */)); |
| + delegates->push_back(new NaClForkDelegate(true /* nonsfi_mode */)); |
|
Mark Seaborn
2014/05/09 22:44:48
This will launch an extra process at browser start
jln (very slow on Chromium)
2014/05/09 22:59:28
Good point, but let's make sure that we don't dupl
mdempsky
2014/05/09 23:49:35
Mark and I chatted about this over IM, and I belie
|
| #endif |
| } |