From 58a487b75e6848cfadfa49be00196f71e2531726 Mon Sep 17 00:00:00 2001 From: "mdempsky@chromium.org" Date: Sat, 10 May 2014 04:50:11 +0000 Subject: Remove SandboxIPCProcess's dependency on chrome-sandbox Now that we use RecvMsgWithPid to find the PIDs for zygote children, we no longer need to plumb the chrome-sandbox path down into and through the renderer host code. BUG=357670 NOTRY=true Review URL: https://codereview.chromium.org/276763002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@269530 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/renderer_host/sandbox_ipc_linux.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'content/browser/renderer_host/sandbox_ipc_linux.h') diff --git a/content/browser/renderer_host/sandbox_ipc_linux.h b/content/browser/renderer_host/sandbox_ipc_linux.h index e900954..6b4bcee 100644 --- a/content/browser/renderer_host/sandbox_ipc_linux.h +++ b/content/browser/renderer_host/sandbox_ipc_linux.h @@ -26,9 +26,7 @@ class SandboxIPCProcess { // point of view of the renderer, it's talking to the browser but this // object actually services the requests. // sandbox_cmd: the path of the sandbox executable. - SandboxIPCProcess(int lifeline_fd, - int browser_socket, - std::string sandbox_cmd); + SandboxIPCProcess(int lifeline_fd, int browser_socket); ~SandboxIPCProcess(); void Run(); @@ -65,11 +63,6 @@ class SandboxIPCProcess { PickleIterator iter, const std::vector& fds); - void HandleGetChildWithInode(int fd, - const Pickle& pickle, - PickleIterator iter, - const std::vector& fds); - void HandleMakeSharedMemorySegment(int fd, const Pickle& pickle, PickleIterator iter, @@ -86,7 +79,6 @@ class SandboxIPCProcess { const int lifeline_fd_; const int browser_socket_; - std::vector sandbox_cmd_; scoped_ptr webkit_platform_support_; SkTDArray paths_; -- cgit v1.1