Index: base/threading/watchdog.cc |
diff --git a/base/threading/watchdog.cc b/base/threading/watchdog.cc |
index cd215780c8b74372c6bda3f8be5ba456544100cb..b0359a7bfb913632a9afa8225d28f2c5fce37ace 100644 |
--- a/base/threading/watchdog.cc |
+++ b/base/threading/watchdog.cc |
@@ -2,11 +2,15 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "base/threading/watchdog.h" |
+#include <string> |
#include "base/compiler_specific.h" |
#include "base/logging.h" |
+#include "base/synchronization/condition_variable.h" |
+#include "base/synchronization/lock.h" |
#include "base/threading/platform_thread.h" |
+#include "base/threading/watchdog.h" |
+#include "base/time.h" |
namespace base { |