| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // http://code.google.com/p/chromium/wiki/LinuxSandboxIPC | |
| 6 | |
| 7 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_SANDBOX_HOST_LINUX_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_SANDBOX_HOST_LINUX_H_ |
| 8 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_SANDBOX_HOST_LINUX_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_SANDBOX_HOST_LINUX_H_ |
| 9 | 7 |
| 10 #include <string> | 8 #include <string> |
| 11 | 9 |
| 12 #include "base/logging.h" | 10 #include "base/logging.h" |
| 13 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 14 | 12 |
| 15 template <typename T> struct DefaultSingletonTraits; | 13 template <typename T> struct DefaultSingletonTraits; |
| 16 | 14 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 47 int renderer_socket_; | 45 int renderer_socket_; |
| 48 int childs_lifeline_fd_; | 46 int childs_lifeline_fd_; |
| 49 pid_t pid_; | 47 pid_t pid_; |
| 50 | 48 |
| 51 DISALLOW_COPY_AND_ASSIGN(RenderSandboxHostLinux); | 49 DISALLOW_COPY_AND_ASSIGN(RenderSandboxHostLinux); |
| 52 }; | 50 }; |
| 53 | 51 |
| 54 } // namespace content | 52 } // namespace content |
| 55 | 53 |
| 56 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_SANDBOX_HOST_LINUX_H_ | 54 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_SANDBOX_HOST_LINUX_H_ |
| OLD | NEW |