| Index: content/browser/zygote_host/zygote_host_impl_linux.cc
|
| diff --git a/content/browser/zygote_host/zygote_host_impl_linux.cc b/content/browser/zygote_host/zygote_host_impl_linux.cc
|
| index 517c10201a5fb6d1cafef41a369962f879d1f362..e798f96fd7af1beea4ef4d4791ed6b7e59f21c20 100644
|
| --- a/content/browser/zygote_host/zygote_host_impl_linux.cc
|
| +++ b/content/browser/zygote_host/zygote_host_impl_linux.cc
|
| @@ -50,7 +50,7 @@ void ZygoteHostImpl::Init(const std::string& sandbox_cmd) {
|
| const bool using_namespace_sandbox = ShouldUseNamespaceSandbox();
|
| // A non empty sandbox_cmd means we want a SUID sandbox.
|
| const bool using_suid_sandbox =
|
| - sandbox_binary_.empty() && !using_namespace_sandbox;
|
| + !sandbox_binary_.empty() && !using_namespace_sandbox;
|
|
|
| // Use the SUID sandbox for adjusting OOM scores when we are using the setuid
|
| // sandbox. This is needed beacuse the processes are non-dumpable, so
|
|
|