diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-23 22:43:53 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-23 22:43:53 +0000 |
commit | dec76e804867ced17b032571f440adf4945c4d99 (patch) | |
tree | fd798a848d7967b28d89350a55f48285057e2739 /base/watchdog.h | |
parent | 0695ef4d095a441148ae80a08576c25c2ab8bc40 (diff) | |
download | chromium_src-dec76e804867ced17b032571f440adf4945c4d99.zip chromium_src-dec76e804867ced17b032571f440adf4945c4d99.tar.gz chromium_src-dec76e804867ced17b032571f440adf4945c4d99.tar.bz2 |
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
Diffstat (limited to 'base/watchdog.h')
-rw-r--r-- | base/watchdog.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/base/watchdog.h b/base/watchdog.h index fd8f444..b4262d4 100644 --- a/base/watchdog.h +++ b/base/watchdog.h @@ -23,7 +23,6 @@ #include "base/condition_variable.h" #include "base/lock.h" -#include "base/logging.h" #include "base/platform_thread.h" #include "base/time.h" @@ -45,9 +44,7 @@ class Watchdog { // Alarm is called if the time expires after an Arm() without someone calling // Disarm(). This method can be overridden to create testable classes. - virtual void Alarm() { - DLOG(INFO) << "Watchdog alarmed for " << thread_watched_name_; - } + virtual void Alarm(); // Reset static data to initial state. Useful for tests, to ensure // they are independent. |