blob: 364020d825ef5a7134290cfaa20b8b2735049ce0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// Copyright 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "config.h"
#include "cc/timer.h"
#include "base/compiler_specific.h"
#include "base/logging.h"
#include "cc/thread.h"
namespace cc {
class TimerTask : public Thread::Task {
public:
explicit TimerTask(Timer* timer)
: Thread::Task(0)
, m_timer(timer)
{
}
virtual ~TimerTask()
{
if (!m_timer)
return;
DCHECK(m_timer->m_task == this);
m_timer->stop();
}
virtual void performTask() OVERRIDE
{
if (!m_timer)
return;
TimerClient* client = m_timer->m_client;
m_timer->stop();
if (client)
client->onTimerFired();
}
private:
friend class Timer;
Timer* m_timer; // null if cancelled
};
Timer::Timer(Thread* thread, TimerClient* client)
: m_client(client)
, m_thread(thread)
, m_task(0)
{
}
Timer::~Timer()
{
stop();
}
void Timer::startOneShot(double intervalSeconds)
{
stop();
m_task = new TimerTask(this);
// The thread expects delays in milliseconds.
m_thread->postDelayedTask(adoptPtr(m_task), intervalSeconds * 1000.0);
}
void Timer::stop()
{
if (!m_task)
return;
m_task->m_timer = 0;
m_task = 0;
}
} // namespace cc
|