| Index: content/public/common/sandboxed_process_launcher_delegate.h
|
| diff --git a/content/public/common/sandboxed_process_launcher_delegate.h b/content/public/common/sandboxed_process_launcher_delegate.h
|
| index 067274548cd2ed5166b24d5e311f55485d0664a6..56ee5092460117a5bad0891cce56913f1ddf87d8 100644
|
| --- a/content/public/common/sandboxed_process_launcher_delegate.h
|
| +++ b/content/public/common/sandboxed_process_launcher_delegate.h
|
| @@ -50,9 +50,12 @@ class CONTENT_EXPORT SandboxedProcessLauncherDelegate {
|
| virtual void PostSpawnTarget(base::ProcessHandle process) {}
|
|
|
| #elif defined(OS_POSIX)
|
| +
|
| #if !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| - // Override this to return true to use the setuid sandbox.
|
| - virtual ZygoteHandle* GetZygote();
|
| + // Returns the zygote used to launch the process.
|
| + // NOTE: For now Chrome always uses the same zygote for performance reasons.
|
| + // http://crbug.com/569191
|
| + virtual ZygoteHandle GetZygote();
|
| #endif // !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
|
|
| // Override this if the process needs a non-empty environment map.
|
|
|