diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-01 09:19:37 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-01 09:19:37 +0000 |
commit | 43cf325be09379594dd96e0b35146585cdfd6a34 (patch) | |
tree | 46401fd401988a049d3b12bea27132b7889b1986 /base/process_posix.cc | |
parent | 744121a2bf4ccf78a95cd816e696c0fc7f2551a5 (diff) | |
download | chromium_src-43cf325be09379594dd96e0b35146585cdfd6a34.zip chromium_src-43cf325be09379594dd96e0b35146585cdfd6a34.tar.gz chromium_src-43cf325be09379594dd96e0b35146585cdfd6a34.tar.bz2 |
Use portable typedef for PIDs (process IDs).
This is a preparation to land http://codereview.chromium.org/54003,
which replaces chrome_process_filter with more portable chrome_process_util.
Review URL: http://codereview.chromium.org/57062
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12948 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_posix.cc')
-rw-r--r-- | base/process_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/process_posix.cc b/base/process_posix.cc index f5a7821..ff8cf92 100644 --- a/base/process_posix.cc +++ b/base/process_posix.cc @@ -50,7 +50,7 @@ bool Process::EmptyWorkingSet() { return false; } -int32 Process::pid() const { +ProcessId Process::pid() const { if (process_ == 0) return 0; |