From dec76e804867ced17b032571f440adf4945c4d99 Mon Sep 17 00:00:00 2001 From: "erg@google.com" Date: Thu, 23 Sep 2010 22:43:53 +0000 Subject: FBTF: Move virtual methods to implementation files. Remove logging.h and other headers where possible. BUG=none TEST=none Review URL: http://codereview.chromium.org/3461019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60369 0039d316-1c4b-4281-b951-d872f2087c98 --- base/watchdog.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'base/watchdog.cc') diff --git a/base/watchdog.cc b/base/watchdog.cc index d78ec0c..b20d9fa 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. -- cgit v1.1