1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/timer.h"
7 #include "base/message_loop.h"
11 void BaseTimer_Helper::OrphanDelayedTask() {
13 delayed_task_
->timer_
= NULL
;
18 void BaseTimer_Helper::InitiateDelayedTask(TimerTask
* timer_task
) {
21 delayed_task_
= timer_task
;
22 delayed_task_
->timer_
= this;
23 MessageLoop::current()->PostDelayedTask(
24 timer_task
->posted_from_
, timer_task
,
25 static_cast<int>(timer_task
->delay_
.InMillisecondsRoundedUp()));