| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // https://chromium.googlesource.com/chromium/src/+/master/docs/linux_sandbox_ip
c.md | 5 // https://chromium.googlesource.com/chromium/src/+/master/docs/linux_sandbox_ip
c.md |
| 6 | 6 |
| 7 #ifndef CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_LINUX_H_ | 7 #ifndef CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_LINUX_H_ |
| 8 #define CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_LINUX_H_ | 8 #define CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_LINUX_H_ |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 base::PickleIterator iter, | 64 base::PickleIterator iter, |
| 65 const std::vector<base::ScopedFD>& fds); | 65 const std::vector<base::ScopedFD>& fds); |
| 66 | 66 |
| 67 void SendRendererReply(const std::vector<base::ScopedFD>& fds, | 67 void SendRendererReply(const std::vector<base::ScopedFD>& fds, |
| 68 const base::Pickle& reply, | 68 const base::Pickle& reply, |
| 69 int reply_fd); | 69 int reply_fd); |
| 70 | 70 |
| 71 const int lifeline_fd_; | 71 const int lifeline_fd_; |
| 72 const int browser_socket_; | 72 const int browser_socket_; |
| 73 scoped_ptr<BlinkPlatformImpl> blink_platform_impl_; | 73 scoped_ptr<BlinkPlatformImpl> blink_platform_impl_; |
| 74 SkTDArray<SkString*> paths_; | 74 std::vector<SkString> paths_; |
| 75 | 75 |
| 76 DISALLOW_COPY_AND_ASSIGN(SandboxIPCHandler); | 76 DISALLOW_COPY_AND_ASSIGN(SandboxIPCHandler); |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 } // namespace content | 79 } // namespace content |
| 80 | 80 |
| 81 #endif // CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_LINUX_H_ | 81 #endif // CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_LINUX_H_ |
| OLD | NEW |