| 739 | } |
| 740 | |
| 741 | void DelayedTask::Abort(const Status& abort_status) { |
| 742 | func_(abort_status); |
| 743 | delete this; |
| 744 | } |
| 745 | |
| 746 | void DelayedTask::TimerHandler(ev::timer& /*watcher*/, int revents) { |
| 747 | DCHECK(is_linked()) << "should be linked on scheduled_tasks_"; |
no outgoing calls
no test coverage detected