HomeSort by relevance Sort by last modified time
    Searched refs:unresponsive_time (Results 1 - 3 of 3) sorted by null

  /external/chromium/chrome/browser/metrics/
thread_watcher.h 23 // unresponsive_time is the wait time after ping message is sent, to check if
27 // base::TimeDelta unresponsive_time = base::TimeDelta::FromSeconds(10);
29 // unresponsive_time);
60 // sleep_time and unresponsive_time. sleep_time_ is the wait time between ping
68 const base::TimeDelta& unresponsive_time);
80 base::TimeDelta unresponsive_time() const { return unresponsive_time_; } function in class:ThreadWatcher
98 const base::TimeDelta& unresponsive_time);
thread_watcher.cc 22 const base::TimeDelta& unresponsive_time)
26 unresponsive_time_(unresponsive_time),
42 const base::TimeDelta& unresponsive_time) {
44 DCHECK_GE(unresponsive_time.InMilliseconds(), sleep_time.InMilliseconds());
53 thread_id, thread_name, sleep_time, unresponsive_time));
61 new ThreadWatcher(thread_id, thread_name, sleep_time, unresponsive_time);
thread_watcher_unittest.cc 66 const TimeDelta& unresponsive_time)
67 : ThreadWatcher(thread_id, thread_name, sleep_time, unresponsive_time),
297 EXPECT_EQ(kUnresponsiveTime, io_watcher_->unresponsive_time());
304 EXPECT_EQ(kUnresponsiveTime, webkit_watcher_->unresponsive_time());

Completed in 197 milliseconds