diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-11 22:35:19 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-11 22:35:19 +0000 |
commit | 2f15de4cf410a5d260958a84f7ff5acb5ed93b42 (patch) | |
tree | 23154cfe6dcb10d0af1349d5926820b10c602383 /base/process.h | |
parent | e688331d8e7086a71a55033a3ad14cc8b018799b (diff) | |
download | chromium_src-2f15de4cf410a5d260958a84f7ff5acb5ed93b42.zip chromium_src-2f15de4cf410a5d260958a84f7ff5acb5ed93b42.tar.gz chromium_src-2f15de4cf410a5d260958a84f7ff5acb5ed93b42.tar.bz2 |
Remove some Windows-specific stuff from RenderProcessHost by having callers get the process handle and PID directly from the corresponding Process object.
Review URL: http://codereview.chromium.org/10608
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5219 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process.h')
-rw-r--r-- | base/process.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/base/process.h b/base/process.h index 2a92fcd..806b1de 100644 --- a/base/process.h +++ b/base/process.h @@ -32,8 +32,9 @@ class Process { // A handle to the current process. static Process Current(); - // Get/Set the handle for this process. - ProcessHandle handle() { return process_; } + // Get/Set the handle for this process. The handle will be 0 if the process + // is no longer running. + ProcessHandle handle() const { return process_; } void set_handle(ProcessHandle handle) { process_ = handle; } // Get the PID for this process. @@ -52,7 +53,7 @@ class Process { // A process is backgrounded when it's priority is lower than normal. // Return true if this process is backgrounded, false otherwise. - bool IsProcessBackgrounded(); + bool IsProcessBackgrounded() const; // Set a prcess as backgrounded. If value is true, the priority // of the process will be lowered. If value is false, the priority |