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

Unified Diff: content/public/common/sandboxed_process_launcher_delegate.cc

Issue 1532423003: Have each SandboxedProcessLauncherDelegate maintain a zygote. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fetch sandbox status Created 5 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/public/common/sandboxed_process_launcher_delegate.cc
diff --git a/content/public/common/sandboxed_process_launcher_delegate.cc b/content/public/common/sandboxed_process_launcher_delegate.cc
index 59e577cc07eb1ded684498a4089b86f2ea30087c..1384738da47c9f543b8ba41a510ad1e48bbca354 100644
--- a/content/public/common/sandboxed_process_launcher_delegate.cc
+++ b/content/public/common/sandboxed_process_launcher_delegate.cc
@@ -25,8 +25,8 @@ bool SandboxedProcessLauncherDelegate::PreSpawnTarget(
}
#elif(OS_POSIX)
-bool SandboxedProcessLauncherDelegate::ShouldUseZygote() {
- return false;
+ZygoteHandle* SandboxedProcessLauncherDelegate::GetZygote() {
+ return nullptr;
}
base::EnvironmentMap SandboxedProcessLauncherDelegate::GetEnvironment() {

Powered by Google App Engine
This is Rietveld 408576698