Index: base/threading/watchdog.h |
diff --git a/base/threading/watchdog.h b/base/threading/watchdog.h |
index 7991c30d0358d059257c0b1f395684c0579da40d..6ee50022abf0f8b817ef90a04b9b3b128064e2c6 100644 |
--- a/base/threading/watchdog.h |
+++ b/base/threading/watchdog.h |
@@ -79,18 +79,6 @@ class BASE_EXPORT Watchdog { |
TimeTicks start_time_; // Start of epoch, and alarm after duration_. |
- // When the debugger breaks (when we alarm), all the other alarms that are |
- // armed will expire (also alarm). To diminish this effect, we track any |
- // delay due to debugger breaks, and we *try* to adjust the effective start |
- // time of other alarms to step past the debugging break. |
- // Without this safety net, any alarm will typically trigger a host of follow |
- // on alarms from callers that specify old times. |
- static Lock static_lock_; // Lock for access of static data... |
- // When did we last alarm and get stuck (for a while) in a debugger? |
- static TimeTicks last_debugged_alarm_time_; |
- // How long did we sit on a break in the debugger? |
- static TimeDelta last_debugged_alarm_delay_; |
- |
DISALLOW_COPY_AND_ASSIGN(Watchdog); |
}; |