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

Unified Diff: base/process/process_posix.cc

Issue 864163003: Rename base::Process::pid() to Pid() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
Index: base/process/process_posix.cc
diff --git a/base/process/process_posix.cc b/base/process/process_posix.cc
index 93dec98a0f705e15a82fb6c17a95391785788800..5d7007c9c9e0bc29475799d159b8a0c2f1f073de 100644
--- a/base/process/process_posix.cc
+++ b/base/process/process_posix.cc
@@ -75,7 +75,7 @@ Process Process::Duplicate() const {
return Process(process_);
}
-ProcessId Process::pid() const {
+ProcessId Process::Pid() const {
DCHECK(IsValid());
return GetProcId(process_);
}

Powered by Google App Engine
This is Rietveld 408576698