Index: base/timer/timer.cc |
diff --git a/base/timer/timer.cc b/base/timer/timer.cc |
index 1c4b10c6de5a46841cac2f74bc2ae33829d2148e..1916ccc34ebb7c7bf328533ba8911ddd11679b17 100644 |
--- a/base/timer/timer.cc |
+++ b/base/timer/timer.cc |
@@ -85,6 +85,14 @@ Timer::~Timer() { |
StopAndAbandon(); |
} |
+bool Timer::IsRunning() const { |
+ return is_running_; |
+} |
+ |
+TimeDelta Timer::GetCurrentDelay() const { |
+ return delay_; |
+} |
+ |
void Timer::Start(const tracked_objects::Location& posted_from, |
TimeDelta delay, |
const base::Closure& user_task) { |