Index: content/browser/utility_process_host_impl.cc |
diff --git a/content/browser/utility_process_host_impl.cc b/content/browser/utility_process_host_impl.cc |
index 64c7888620af616bf567dfb521d34b1bc6eda4e0..5739ad558475635f602c7bf420e10b32aba1838e 100644 |
--- a/content/browser/utility_process_host_impl.cc |
+++ b/content/browser/utility_process_host_impl.cc |
@@ -76,11 +76,10 @@ class UtilitySandboxedProcessLauncherDelegate |
#if defined(OS_WIN) |
launch_elevated_(launch_elevated) |
#elif defined(OS_POSIX) |
- env_(env), |
+ env_(env) |
#if !defined(OS_MACOSX) && !defined(OS_ANDROID) |
- no_sandbox_(no_sandbox), |
+ , no_sandbox_(no_sandbox) |
#endif // !defined(OS_MACOSX) && !defined(OS_ANDROID) |
- ipc_fd_(host->TakeClientFileDescriptor()) |
#endif // OS_WIN |
{} |
@@ -117,7 +116,6 @@ class UtilitySandboxedProcessLauncherDelegate |
} |
#endif // !defined(OS_MACOSX) && !defined(OS_ANDROID) |
base::EnvironmentMap GetEnvironment() override { return env_; } |
- base::ScopedFD TakeIpcFd() override { return std::move(ipc_fd_); } |
#endif // OS_WIN |
SandboxType GetSandboxType() override { |
@@ -134,7 +132,6 @@ class UtilitySandboxedProcessLauncherDelegate |
#if !defined(OS_MACOSX) && !defined(OS_ANDROID) |
bool no_sandbox_; |
#endif // !defined(OS_MACOSX) && !defined(OS_ANDROID) |
- base::ScopedFD ipc_fd_; |
#endif // OS_WIN |
}; |