Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(928)

Unified Diff: base/watchdog.cc

Issue 3461019: FBTF: Move virtual methods to implementation files. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Win+chromeos+mac fixes Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/watchdog.cc
diff --git a/base/watchdog.cc b/base/watchdog.cc
index d78ec0ce931ed4b8efb974073af404b41e2b9771..b20d9faebfcdd57e70947f26e0077aeff58dac67 100644
--- a/base/watchdog.cc
+++ b/base/watchdog.cc
@@ -5,6 +5,7 @@
#include "base/watchdog.h"
#include "base/compiler_specific.h"
+#include "base/logging.h"
#include "base/platform_thread.h"
using base::TimeDelta;
@@ -72,6 +73,10 @@ void Watchdog::Disarm() {
// will check its state and time, and act accordingly.
}
+void Watchdog::Alarm() {
+ DLOG(INFO) << "Watchdog alarmed for " << thread_watched_name_;
+}
+
//------------------------------------------------------------------------------
// Internal private methods that the watchdog thread uses.

Powered by Google App Engine
This is Rietveld 408576698