Home | History | Annotate | Download | only in page

Lines Matching defs:DOMTimer

28 #include "DOMTimer.h"
44 double DOMTimer::s_minDefaultTimerInterval = 0.010; // 10 milliseconds
65 DOMTimer::DOMTimer(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot)
82 DOMTimer::~DOMTimer()
88 int DOMTimer::install(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot)
90 // DOMTimer constructor links the new timer into a list of ActiveDOMObjects held by the 'context'.
91 // The timer is deleted when context is deleted (DOMTimer::contextDestroyed) or explicitly via DOMTimer::removeById(),
92 // or if it is a one-time timer and it has fired (DOMTimer::fired).
93 DOMTimer* timer = new DOMTimer(context, action, timeout, singleShot);
100 void DOMTimer::removeById(ScriptExecutionContext* context, int timeoutId)
113 void DOMTimer::fired()
155 void DOMTimer::contextDestroyed()
161 void DOMTimer::stop()
170 void DOMTimer::adjustMinimumTimerInterval(double oldMinimumTimerInterval)
187 double DOMTimer::intervalClampedToMinimum(int timeout, double minimumTimerInterval) const