summaryrefslogtreecommitdiff
path: root/base/process/process_posix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/process/process_posix.cc')
-rw-r--r--base/process/process_posix.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/process/process_posix.cc b/base/process/process_posix.cc
index a1d84e9128..db525f0355 100644
--- a/base/process/process_posix.cc
+++ b/base/process/process_posix.cc
@@ -311,7 +311,7 @@ void Process::Close() {
}
#if !defined(OS_NACL_NONSFI)
-bool Process::Terminate(int /*exit_code*/, bool wait) const {
+bool Process::Terminate(int exit_code, bool wait) const {
// exit_code isn't supportable.
DCHECK(IsValid());
CHECK_GT(process_, 0);
@@ -383,7 +383,7 @@ bool Process::IsProcessBackgrounded() const {
return false;
}
-bool Process::SetProcessBackgrounded(bool /*value*/) {
+bool Process::SetProcessBackgrounded(bool value) {
// Not implemented for POSIX systems other than Linux and Mac. With POSIX, if
// we were to lower the process priority we wouldn't be able to raise it back
// to its initial priority.