Index: chrome/browser/renderer_host/render_sandbox_host_linux.h |
diff --git a/chrome/browser/renderer_host/render_sandbox_host_linux.h b/chrome/browser/renderer_host/render_sandbox_host_linux.h |
index 43fa4475c42c9a5f40986d46811c909a889ee25a..5b38b4cf60c96921abd35fc3241e0d2bcc8eaff3 100644 |
--- a/chrome/browser/renderer_host/render_sandbox_host_linux.h |
+++ b/chrome/browser/renderer_host/render_sandbox_host_linux.h |
@@ -18,6 +18,7 @@ class RenderSandboxHostLinux { |
// Get the file descriptor which renderers should be given in order to signal |
// crashes to the browser. |
int GetRendererSocket() const { return renderer_socket_; } |
+ pid_t pid() const { return pid_; } |
private: |
friend struct DefaultSingletonTraits<RenderSandboxHostLinux>; |
@@ -27,6 +28,7 @@ class RenderSandboxHostLinux { |
int renderer_socket_; |
int childs_lifeline_fd_; |
+ pid_t pid_; |
DISALLOW_EVIL_CONSTRUCTORS(RenderSandboxHostLinux); |
}; |