aboutsummaryrefslogtreecommitdiff
path: root/brillo/process_reaper.h
diff options
context:
space:
mode:
Diffstat (limited to 'brillo/process_reaper.h')
-rw-r--r--brillo/process_reaper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/brillo/process_reaper.h b/brillo/process_reaper.h
index 41bbe73..7b70a8d 100644
--- a/brillo/process_reaper.h
+++ b/brillo/process_reaper.h
@@ -39,7 +39,7 @@ class BRILLO_EXPORT ProcessReaper final {
// selected process exits or the process terminates for other reason. The
// |callback| receives the exit status and exit code of the terminated process
// as a siginfo_t. See wait(2) for details about siginfo_t.
- bool WatchForChild(const tracked_objects::Location& from_here,
+ bool WatchForChild(const base::Location& from_here,
pid_t pid,
const ChildCallback& callback);
@@ -56,7 +56,7 @@ class BRILLO_EXPORT ProcessReaper final {
bool HandleSIGCHLD(const signalfd_siginfo& sigfd_info);
struct WatchedProcess {
- tracked_objects::Location location;
+ base::Location location;
ChildCallback callback;
};
std::map<pid_t, WatchedProcess> watched_processes_;