Index: content/browser/renderer_host/render_sandbox_host_linux.cc |
diff --git a/content/browser/renderer_host/render_sandbox_host_linux.cc b/content/browser/renderer_host/render_sandbox_host_linux.cc |
index 02b5fee31030376c8bff1435d5c627f69687454b..846ec26f2b76ee8f149b61b057038250649b52d8 100644 |
--- a/content/browser/renderer_host/render_sandbox_host_linux.cc |
+++ b/content/browser/renderer_host/render_sandbox_host_linux.cc |
@@ -25,7 +25,7 @@ RenderSandboxHostLinux* RenderSandboxHostLinux::GetInstance() { |
return Singleton<RenderSandboxHostLinux>::get(); |
} |
-void RenderSandboxHostLinux::Init(const std::string& sandbox_path) { |
+void RenderSandboxHostLinux::Init() { |
DCHECK(!initialized_); |
initialized_ = true; |
@@ -64,7 +64,7 @@ void RenderSandboxHostLinux::Init(const std::string& sandbox_path) { |
if (IGNORE_EINTR(close(pipefds[1])) < 0) |
DPLOG(ERROR) << "close"; |
- SandboxIPCProcess handler(child_lifeline_fd, browser_socket, sandbox_path); |
+ SandboxIPCProcess handler(child_lifeline_fd, browser_socket); |
handler.Run(); |
_exit(0); |
} |