summaryrefslogtreecommitdiff
path: root/chromium/base/process/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/base/process/process.h')
-rw-r--r--chromium/base/process/process.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/base/process/process.h b/chromium/base/process/process.h
index 5538475863b..978ca78c046 100644
--- a/chromium/base/process/process.h
+++ b/chromium/base/process/process.h
@@ -108,12 +108,12 @@ class BASE_EXPORT Process {
// any process.
// NOTE: |exit_code| is optional, nullptr can be passed if the exit code is
// not required.
- bool WaitForExit(int* exit_code);
+ bool WaitForExit(int* exit_code) const;
// Same as WaitForExit() but only waits for up to |timeout|.
// NOTE: |exit_code| is optional, nullptr can be passed if the exit code
// is not required.
- bool WaitForExitWithTimeout(TimeDelta timeout, int* exit_code);
+ bool WaitForExitWithTimeout(TimeDelta timeout, int* exit_code) const;
#if defined(OS_MACOSX)
// The Mac needs a Mach port in order to manipulate a process's priority,