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..5fdb40c7bcd8d5ebc32b9ab0d10eed53c435e1c6 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)); |
jln (very slow on Chromium)
2014/05/09 20:51:20
Add /* non_sfi */ comments next to false and true?
mdempsky
2014/05/09 21:34:11
Done.
|
+ delegates->push_back(new NaClForkDelegate(true)); |
#endif |
} |