diff options
author | tedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-31 23:22:48 +0000 |
---|---|---|
committer | tedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-31 23:22:48 +0000 |
commit | 5387fdd2ef0444e5a6c369936df5ec4b84e97e65 (patch) | |
tree | 56dc9e9f3ea52cbd2e90999fe8436efa886ed826 /base/process_util.h | |
parent | 80b083462321404124ea12407b39708aae81c795 (diff) | |
download | chromium_src-5387fdd2ef0444e5a6c369936df5ec4b84e97e65.zip chromium_src-5387fdd2ef0444e5a6c369936df5ec4b84e97e65.tar.gz chromium_src-5387fdd2ef0444e5a6c369936df5ec4b84e97e65.tar.bz2 |
Fix CleanupProcesses() interface to use TimeDelta.
BUG=108171
Review URL: https://chromiumcodereview.appspot.com/10821062
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149312 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util.h')
-rw-r--r-- | base/process_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/process_util.h b/base/process_util.h index 6745d4b..04c1d88d 100644 --- a/base/process_util.h +++ b/base/process_util.h @@ -532,7 +532,7 @@ BASE_EXPORT bool WaitForSingleProcess(ProcessHandle handle, // any processes needed to be killed, true if they all exited cleanly within // the wait_milliseconds delay. BASE_EXPORT bool CleanupProcesses(const FilePath::StringType& executable_name, - int64 wait_milliseconds, + base::TimeDelta wait, int exit_code, const ProcessFilter* filter); |