Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1197)

Unified Diff: content/browser/plugin_loader_posix.cc

Issue 8770025: Zygote most of the uses of the utility process on Linux (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Make use_linux_zygote flag default to true, and remove the need for #ifdef's. Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/plugin_loader_posix.cc
diff --git a/content/browser/plugin_loader_posix.cc b/content/browser/plugin_loader_posix.cc
index 6d2be8553b3f2bed52eea8fb25b621631ed7298a..6fd8e1330e7f1940693dc62822543e7af2e3a24b 100644
--- a/content/browser/plugin_loader_posix.cc
+++ b/content/browser/plugin_loader_posix.cc
@@ -94,6 +94,7 @@ void PluginLoaderPosix::LoadPluginsInternal() {
process_host_ = new UtilityProcessHost(this, BrowserThread::IO);
process_host_->set_no_sandbox(true);
+ process_host_->set_use_linux_zygote(false);
#if defined(OS_MACOSX)
process_host_->set_child_flags(ChildProcessHost::CHILD_ALLOW_HEAP_EXECUTION);
#endif

Powered by Google App Engine
This is Rietveld 408576698