diff options
Diffstat (limited to 'chrome/common/process_watcher.cc')
-rw-r--r-- | chrome/common/process_watcher.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/common/process_watcher.cc b/chrome/common/process_watcher.cc index b43e2db..1ee7edf 100644 --- a/chrome/common/process_watcher.cc +++ b/chrome/common/process_watcher.cc @@ -7,8 +7,8 @@ #include "base/message_loop.h" #include "base/object_watcher.h" #include "base/sys_info.h" -#include "chrome/app/result_codes.h" #include "chrome/common/env_vars.h" +#include "chrome/common/result_codes.h" // Maximum amount of time (in milliseconds) to wait for the process to exit. static const int kWaitInterval = 2000; @@ -91,4 +91,3 @@ void ProcessWatcher::EnsureProcessTerminated(base::ProcessHandle process) { new TimerExpiredTask(process), kWaitInterval); } - |