From 43cf325be09379594dd96e0b35146585cdfd6a34 Mon Sep 17 00:00:00 2001 From: "phajdan.jr@chromium.org" Date: Wed, 1 Apr 2009 09:19:37 +0000 Subject: 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 --- base/process_posix.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/process_posix.cc') 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; -- cgit v1.1