Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1448)

Unified Diff: base/process_posix.cc

Issue 57062: Use portable typedef for PIDs (process IDs). (Closed)
Patch Set: speculative fix for win Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/process.h ('k') | base/process_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process_posix.cc
diff --git a/base/process_posix.cc b/base/process_posix.cc
index f5a78219e81ee01487a45f9a894e9390dba1e530..ff8cf92c52e79ebf1534e85b77b9f4ad4a4e1df8 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;
« no previous file with comments | « base/process.h ('k') | base/process_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698