| Index: chrome/browser/renderer_host/render_sandbox_host_linux.h
|
| ===================================================================
|
| --- chrome/browser/renderer_host/render_sandbox_host_linux.h (revision 30938)
|
| +++ chrome/browser/renderer_host/render_sandbox_host_linux.h (working copy)
|
| @@ -7,9 +7,6 @@
|
| #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_SANDBOX_HOST_LINUX_H_
|
| #define CHROME_BROWSER_RENDERER_HOST_RENDER_SANDBOX_HOST_LINUX_H_
|
|
|
| -#include <string>
|
| -
|
| -#include "base/logging.h"
|
| #include "base/singleton.h"
|
|
|
| // This is a singleton object which handles sandbox requests from the
|
| @@ -18,15 +15,8 @@
|
| public:
|
| // Get the file descriptor which renderers should be given in order to signal
|
| // crashes to the browser.
|
| - int GetRendererSocket() const {
|
| - DCHECK(init_);
|
| - return renderer_socket_;
|
| - }
|
| - pid_t pid() const {
|
| - DCHECK(init_);
|
| - return pid_;
|
| - }
|
| - void Init(const std::string& sandbox_path);
|
| + int GetRendererSocket() const { return renderer_socket_; }
|
| + pid_t pid() const { return pid_; }
|
|
|
| private:
|
| friend struct DefaultSingletonTraits<RenderSandboxHostLinux>;
|
| @@ -34,12 +24,11 @@
|
| RenderSandboxHostLinux();
|
| ~RenderSandboxHostLinux();
|
|
|
| - bool init_;
|
| int renderer_socket_;
|
| int childs_lifeline_fd_;
|
| pid_t pid_;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(RenderSandboxHostLinux);
|
| + DISALLOW_EVIL_CONSTRUCTORS(RenderSandboxHostLinux);
|
| };
|
|
|
| #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_SANDBOX_HOST_LINUX_H_
|
|
|
| Property changes on: chrome/browser/renderer_host/render_sandbox_host_linux.h
|
| ___________________________________________________________________
|
| Deleted: svn:eol-style
|
| - LF
|
|
|
|
|