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

Unified Diff: base/process/kill_mac.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
« no previous file with comments | « no previous file | base/process/kill_posix.cc » ('j') | components/browser_watcher/exit_code_watcher_win.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process/kill_mac.cc
diff --git a/base/process/kill_mac.cc b/base/process/kill_mac.cc
index a2632f668344199dbc59fd366327a06492a4ee13..8c424009864951636e7e6501341931976beab670 100644
--- a/base/process/kill_mac.cc
+++ b/base/process/kill_mac.cc
@@ -166,7 +166,7 @@ void WaitForChildToDie(pid_t child, int timeout) {
} // namespace
void EnsureProcessTerminated(Process process) {
- WaitForChildToDie(process.pid(), kWaitBeforeKillSeconds);
+ WaitForChildToDie(process.Pid(), kWaitBeforeKillSeconds);
}
} // namespace base
« no previous file with comments | « no previous file | base/process/kill_posix.cc » ('j') | components/browser_watcher/exit_code_watcher_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698