Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(477)

Unified Diff: content/browser/renderer_host/sandbox_ipc_linux.h

Issue 276763002: Remove SandboxIPCProcess's dependency on chrome-sandbox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: 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 e9009546dea32e8d40ea9218d19f95150457b123..6b4bceeae5881f4fd93e06b6a3b8c8fb4b5601c4 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<base::ScopedFD*>& fds);
- void HandleGetChildWithInode(int fd,
- const Pickle& pickle,
- PickleIterator iter,
- const std::vector<base::ScopedFD*>& 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<std::string> sandbox_cmd_;
scoped_ptr<BlinkPlatformImpl> webkit_platform_support_;
SkTDArray<SkString*> paths_;

Powered by Google App Engine
This is Rietveld 408576698